public interface DeleteConditionStep<R extends Record> extends DeleteFinalStep<R>
Delete
's DSL API.
Example:
DSLContext create = DSL.using(configuration);
create.delete(table)
.where(field1.greaterThan(100))
.execute();
Modifier and Type | Method and Description |
---|---|
DeleteConditionStep<R> |
and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator |
DeleteConditionStep<R> |
and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator |
DeleteConditionStep<R> |
and(String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
and(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.AND operator |
DeleteConditionStep<R> |
andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator |
DeleteConditionStep<R> |
andNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator |
DeleteConditionStep<R> |
andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.AND operator |
DeleteConditionStep<R> |
or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator |
DeleteConditionStep<R> |
or(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator |
DeleteConditionStep<R> |
or(String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
or(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DeleteConditionStep<R> |
orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.OR operator |
DeleteConditionStep<R> |
orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator |
DeleteConditionStep<R> |
orNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator |
DeleteConditionStep<R> |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.OR operator |
bind, bind, cancel, close, execute, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeout
attach, detach
@Support DeleteConditionStep<R> and(Condition condition)
Operator.AND
operator@Support DeleteConditionStep<R> and(Field<Boolean> condition)
Operator.AND
operator@Support DeleteConditionStep<R> and(String sql)
Operator.AND
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String)
@Support DeleteConditionStep<R> and(String sql, Object... bindings)
Operator.AND
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, Object...)
@Support DeleteConditionStep<R> and(String sql, QueryPart... parts)
Operator.AND
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, QueryPart...)
@Support DeleteConditionStep<R> andNot(Condition condition)
Operator.AND
operator@Support DeleteConditionStep<R> andNot(Field<Boolean> condition)
Operator.AND
operator@Support DeleteConditionStep<R> andExists(Select<?> select)
Operator.AND
operatorDeleteConditionStep<R> andNotExists(Select<?> select)
Operator.AND
operator@Support DeleteConditionStep<R> or(Condition condition)
Operator.OR
operator@Support DeleteConditionStep<R> or(Field<Boolean> condition)
Operator.OR
operator@Support DeleteConditionStep<R> or(String sql)
Operator.OR
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String)
@Support DeleteConditionStep<R> or(String sql, Object... bindings)
Operator.OR
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, Object...)
@Support DeleteConditionStep<R> or(String sql, QueryPart... parts)
Operator.OR
operator
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, QueryPart...)
@Support DeleteConditionStep<R> orNot(Condition condition)
Operator.OR
operator@Support DeleteConditionStep<R> orNot(Field<Boolean> condition)
Operator.OR
operator@Support DeleteConditionStep<R> orExists(Select<?> select)
Operator.OR
operator@Support DeleteConditionStep<R> orNotExists(Select<?> select)
Operator.OR
operatorCopyright © 2014. All Rights Reserved.