|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface DeleteWhereStep<R extends Record>
This type is used for the Delete's DSL API.
Example:
Factory create = new Factory();
create.delete(table)
.where(field1.greaterThan(100))
.execute();
| Method Summary | |
|---|---|
DeleteConditionStep<R> |
where(Collection<Condition> conditions)
Add conditions to the query |
DeleteConditionStep<R> |
where(Condition... conditions)
Add conditions to the query |
DeleteConditionStep<R> |
where(String sql)
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. |
DeleteConditionStep<R> |
where(String sql,
Object... bindings)
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. |
DeleteConditionStep<R> |
whereExists(Select<?> select)
Add an EXISTS clause to the query |
DeleteConditionStep<R> |
whereNotExists(Select<?> select)
Add a NOT EXISTS clause to the query |
| Methods inherited from interface org.jooq.Query |
|---|
bind, bind, execute, getBindValues, getParam, getParams, getSQL, getSQL |
| Methods inherited from interface org.jooq.Attachable |
|---|
attach |
| Methods inherited from interface org.jooq.Adapter |
|---|
internalAPI |
| Method Detail |
|---|
DeleteConditionStep<R> where(Condition... conditions)
DeleteConditionStep<R> where(Collection<Condition> conditions)
DeleteConditionStep<R> where(String sql)
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!
Factory.condition(String)
DeleteConditionStep<R> where(String sql,
Object... bindings)
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!
Factory.condition(String, Object...)DeleteConditionStep<R> whereExists(Select<?> select)
DeleteConditionStep<R> whereNotExists(Select<?> select)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||