InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql,
Object... bindings) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql,
QueryPart... parts) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(Condition condition) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(Field<Boolean> condition) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andExists(Select<?> select) |
Combine the currently assembled conditions with an EXISTS clause using
the Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNot(Condition condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNot(Field<Boolean> condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNotExists(Select<?> select) |
Combine the currently assembled conditions with a NOT EXISTS clause using
the Operator.AND operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql,
Object... bindings) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql,
QueryPart... parts) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(Condition condition) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(Field<Boolean> condition) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orExists(Select<?> select) |
Combine the currently assembled conditions with an EXISTS clause using
the Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNot(Condition condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNot(Field<Boolean> condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNotExists(Select<?> select) |
Combine the currently assembled conditions with a NOT EXISTS clause using
the Operator.OR operator and proceed to the next step.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(String sql) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(String sql,
Object... bindings) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(String sql,
QueryPart... parts) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(Collection<? extends Condition> conditions) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(Condition condition) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(Condition... conditions) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(Field<Boolean> field) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(SQL sql) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.whereExists(Select<?> select) |
Add a WHERE EXISTS clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.whereNotExists(Select<?> select) |
Add a WHERE NOT EXISTS clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|