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 newTableRef
with the set parametersTableRef.TableRefBuilder.build()
Builds a newTableRef
with 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 TableRef
SQLDeleteStatement.SQLDeleteStatementBuilder.table
Thetable
to delete fromprivate final TableRef
SQLDeleteStatement.table
Thetable
to delete fromprivate TableRef
SQLInsertStatement.SQLInsertStatementBuilder.table
Thetable
to insert intoprivate final TableRef
SQLInsertStatement.table
Thetable
to insert intoprivate TableRef
SQLUpdateStatement.SQLUpdateStatementBuilder.table
Thetable
to updateprivate final TableRef
SQLUpdateStatement.table
Thetable
to updateFields in com.github.tadukoo.database.mysql.syntax.statement with type parameters of type TableRefModifier and TypeFieldDescriptionSQLSelectStatement.fromTables
The tables to grab data fromSQLSelectStatement.SQLSelectStatementBuilder.fromTables
The 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 TableRefModifierConstructorDescriptionprivate
SQLDeleteStatement
(TableRef table, Conditional whereStatement) Constructs a new SQL Delete Statement with the given parametersprivate
SQLInsertStatement
(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parametersprivate
SQLUpdateStatement
(TableRef table, List<EqualsStatement> setStatements, Conditional whereStatement) Constructs a SQLUpdateStatement using the given parameters