Uses of Class
com.github.tadukoo.database.mysql.syntax.conditional.Conditional
Packages that use Conditional
Package
Description
Contains syntax elements to help build SQL statements
Contains syntax elements relating to conditionals
Contains classes for creating MySQL statements
-
Uses of Conditional in com.github.tadukoo.database.mysql.syntax
Methods in com.github.tadukoo.database.mysql.syntax that return ConditionalModifier and TypeMethodDescriptionstatic Conditional
SQLSyntaxUtil.makeConditional
(Collection<String> columnNames, Collection<Object> values, boolean search) Makes aConditional
using the given parameters -
Uses of Conditional in com.github.tadukoo.database.mysql.syntax.conditional
Fields in com.github.tadukoo.database.mysql.syntax.conditional declared as ConditionalModifier and TypeFieldDescriptionprivate Conditional
Conditional.ConditionalBuilder.firstCond
The firstConditional
involved (it may be null if aConditionalStatement
is used instead)private final Conditional
Conditional.firstCond
The firstConditional
involved (it may be null if aConditionalStatement
is used instead)private Conditional
Conditional.ConditionalBuilder.secondCond
The secondConditional
involved (it may be null if either aConditionalStatement
is used instead or if there's only one condition)private final Conditional
Conditional.secondCond
The secondConditional
involved (it may be null if either aConditionalStatement
is used instead or if there's only one condition)Methods in com.github.tadukoo.database.mysql.syntax.conditional that return ConditionalModifier and TypeMethodDescriptionConditional.Build.build()
Constructs a newConditional
with the set parameters after checking for errorsConditional.ConditionalBuilder.build()
Constructs a newConditional
with the set parameters after checking for errorsConditional.getFirstCond()
Conditional.getSecondCond()
Methods in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ConditionalModifier and TypeMethodDescriptionConditional.ConditionalBuilder.firstCond
(Conditional firstCond) Conditional.FirstCondition.firstCond
(Conditional firstCond) Conditional.ConditionalBuilder.secondCond
(Conditional secondCond) Conditional.SecondCondition.secondCond
(Conditional secondCond) Constructors in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ConditionalModifierConstructorDescriptionprivate
Conditional
(Conditional firstCond, ConditionalStatement firstCondStmt, SQLConjunctiveOperator operator, Conditional secondCond, ConditionalStatement secondCondStmt) Constructs a new Conditional using the given parameters -
Uses of Conditional in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as ConditionalModifier and TypeFieldDescriptionprivate Conditional
SQLDeleteStatement.SQLDeleteStatementBuilder.whereStatement
Thewhere statement
to use for what to deleteprivate final Conditional
SQLDeleteStatement.whereStatement
Thewhere statement
to use for what to deleteprivate Conditional
SQLSelectStatement.SQLSelectStatementBuilder.whereStatement
The conditional where statementprivate final Conditional
SQLSelectStatement.whereStatement
The conditional where statementprivate Conditional
SQLUpdateStatement.SQLUpdateStatementBuilder.whereStatement
Thewhere statement
private final Conditional
SQLUpdateStatement.whereStatement
Thewhere statement
Methods in com.github.tadukoo.database.mysql.syntax.statement that return ConditionalModifier and TypeMethodDescriptionSQLDeleteStatement.getWhereStatement()
SQLSelectStatement.getWhereStatement()
SQLUpdateStatement.getWhereStatement()
Methods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ConditionalModifier and TypeMethodDescriptionSQLDeleteStatement.SQLDeleteStatementBuilder.whereStatement
(Conditional whereStatement) SQLDeleteStatement.WhereStatementAndBuild.whereStatement
(Conditional whereStatement) SQLSelectStatement.SQLSelectStatementBuilder.whereStatement
(Conditional whereStatement) SQLSelectStatement.WhereStatementAndBuild.whereStatement
(Conditional whereStatement) SQLUpdateStatement.SQLUpdateStatementBuilder.whereStatement
(Conditional whereStatement) SQLUpdateStatement.WhereStatementAndBuild.whereStatement
(Conditional whereStatement) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ConditionalModifierConstructorDescriptionprivate
SQLDeleteStatement
(TableRef table, Conditional whereStatement) Constructs a new SQL Delete Statement with the given parametersprivate
SQLSelectStatement
(boolean distinct, List<ColumnRef> returnColumns, List<TableRef> fromTables, Conditional whereStatement) Constructs a newSQLSelectStatement
using the given parameters.private
SQLUpdateStatement
(TableRef table, List<EqualsStatement> setStatements, Conditional whereStatement) Constructs a SQLUpdateStatement using the given parameters