Uses of Class
com.github.tadukoo.database.mysql.syntax.reference.ColumnRef
Package
Description
Contains
DatabasePojo
, which can be used to store and
retrieve the pojo values from a Database
Contains syntax elements to help build SQL statements
Contains syntax elements relating to conditionals
Contains syntax elements for references (e.g.
Contains classes for creating MySQL statements
-
Uses of ColumnRef in com.github.tadukoo.database.mysql.pojo
Modifier and TypeFieldDescriptionSubPojoDefinition.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junction
The junction to use for this sub pojo when doing a search on the pojoModifier and TypeMethodDescriptionSubPojoDefinition.getJunction()
SubPojoDefinition.getJunction()
Modifier and TypeMethodDescriptionSubPojoDefinition.SubPojoDefinitionBuilder.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.SubPojoDefinitionBuilder.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.TypeAndJunction.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.TypeAndJunction.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) ModifierConstructorDescriptionprivate
SubPojoDefinition
(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinition
using the given parametersprivate
SubPojoDefinition
(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinition
using the given parameters -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax
Modifier and TypeMethodDescriptionstatic ColumnRef
SQLSyntaxUtil.makeColumnRef
(String columnName) Makes a singleColumnRef
using the given columnNameModifier and TypeMethodDescriptionSQLSyntaxUtil.makeColumnRefs
(Collection<String> columnNames) Makes a List ofColumnRefs
using the given columnNamesModifier and TypeMethodDescriptionForeignKeyConstraint.ColumnNames.columnRefs
(ColumnRef... columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.columnRefs
(ColumnRef... columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.referenceColumnRefs
(ColumnRef... referenceColumnRefs) ForeignKeyConstraint.ReferenceColumnNames.referenceColumnRefs
(ColumnRef... referenceColumnRefs) Modifier and TypeMethodDescriptionForeignKeyConstraint.ColumnNames.columnRefs
(List<ColumnRef> columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.columnRefs
(List<ColumnRef> columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.referenceColumnRefs
(List<ColumnRef> referenceColumnRefs) ForeignKeyConstraint.ReferenceColumnNames.referenceColumnRefs
(List<ColumnRef> referenceColumnRefs) -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.conditional
Modifier and TypeFieldDescriptionprivate final ColumnRef
ConditionalStatement.column
The column of this statementprivate ColumnRef
ConditionalStatement.ConditionStatementBuilder.column
TheColumnRef
to the column of the statementprivate final ColumnRef
EqualsStatement.column
Thecolumn
of the statementModifier and TypeMethodDescriptionModifierConstructorDescriptionprivate
ConditionalStatement
(boolean negated, ColumnRef column, SQLOperator operator, Object value) Constructs a new conditional statement with the given parametersEqualsStatement
(ColumnRef column, Object value) Constructs a new EqualsStatement using the given parameters -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.reference
-
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.statement
Modifier and TypeFieldDescriptionSQLInsertStatement.columns
Thecolumns
to insert intoSQLInsertStatement.SQLInsertStatementBuilder.columns
Thecolumns
to insert intoSQLSelectStatement.returnColumns
The columns to be selectedSQLSelectStatement.SQLSelectStatementBuilder.returnColumns
The columns to be selectedModifier and TypeMethodDescriptionSQLInsertStatement.getColumns()
SQLSelectStatement.getReturnColumns()
Modifier and TypeMethodDescriptionSQLSelectStatement.ColumnsOrTables.returnColumns
(ColumnRef... returnColumns) SQLSelectStatement.SQLSelectStatementBuilder.returnColumns
(ColumnRef... returnColumns) Modifier and TypeMethodDescriptionSQLSelectStatement.ColumnsOrTables.returnColumns
(List<ColumnRef> returnColumns) SQLSelectStatement.SQLSelectStatementBuilder.returnColumns
(List<ColumnRef> returnColumns) ModifierConstructorDescriptionprivate
SQLInsertStatement
(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parametersprivate
SQLSelectStatement
(boolean distinct, List<ColumnRef> returnColumns, List<TableRef> fromTables, Conditional whereStatement) Constructs a newSQLSelectStatement
using the given parameters.