Uses of Class
com.github.tadukoo.database.mysql.syntax.reference.TableRef
Packages that use TableRef
Package
Description
Contains syntax elements to help build SQL statements
Contains syntax elements for references (e.g.
Contains classes for creating MySQL statements
-
Uses of TableRef in com.github.tadukoo.database.mysql.syntax
Methods in com.github.tadukoo.database.mysql.syntax with parameters of type TableRefModifier and TypeMethodDescriptionForeignKeyConstraint.ForeignKeyConstraintBuilder.references(TableRef referenceTable) ForeignKeyConstraint.ReferenceTable.references(TableRef referenceTable) -
Uses of TableRef in com.github.tadukoo.database.mysql.syntax.reference
Methods in com.github.tadukoo.database.mysql.syntax.reference that return TableRefModifier and TypeMethodDescriptionTableRef.AliasAndBuild.build()Builds a newTableRefwith the set parametersTableRef.TableRefBuilder.build()Builds a newTableRefwith the set parametersMethods in com.github.tadukoo.database.mysql.syntax.reference with parameters of type TableRefModifier and TypeMethodDescription -
Uses of TableRef in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as TableRefModifier and TypeFieldDescriptionprivate TableRefSQLDeleteStatement.SQLDeleteStatementBuilder.tableThetableto delete fromprivate final TableRefSQLDeleteStatement.tableThetableto delete fromprivate TableRefSQLInsertStatement.SQLInsertStatementBuilder.tableThetableto insert intoprivate final TableRefSQLInsertStatement.tableThetableto insert intoprivate TableRefSQLUpdateStatement.SQLUpdateStatementBuilder.tableThetableto updateprivate final TableRefSQLUpdateStatement.tableThetableto updateFields in com.github.tadukoo.database.mysql.syntax.statement with type parameters of type TableRefModifier and TypeFieldDescriptionSQLSelectStatement.fromTablesThe tables to grab data fromSQLSelectStatement.SQLSelectStatementBuilder.fromTablesThe tables to grab data fromMethods in com.github.tadukoo.database.mysql.syntax.statement that return TableRefModifier and TypeMethodDescriptionSQLDeleteStatement.getTable()SQLInsertStatement.getTable()SQLUpdateStatement.getTable()Methods in com.github.tadukoo.database.mysql.syntax.statement that return types with arguments of type TableRefMethods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type TableRefModifier and TypeMethodDescriptionSQLSelectStatement.FromTables.fromTables(TableRef... fromTables) SQLSelectStatement.SQLSelectStatementBuilder.fromTables(TableRef... fromTables) Method parameters in com.github.tadukoo.database.mysql.syntax.statement with type arguments of type TableRefModifier and TypeMethodDescriptionSQLSelectStatement.FromTables.fromTables(List<TableRef> fromTables) SQLSelectStatement.SQLSelectStatementBuilder.fromTables(List<TableRef> fromTables) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type TableRefModifierConstructorDescriptionprivateSQLDeleteStatement(TableRef table, Conditional whereStatement) Constructs a new SQL Delete Statement with the given parametersprivateSQLInsertStatement(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parametersprivateSQLUpdateStatement(TableRef table, List<EqualsStatement> setStatements, Conditional whereStatement) Constructs a SQLUpdateStatement using the given parameters