public interface UpdateConditionStep<R extends Record> extends UpdateFinalStep<R>, UpdateReturningStep<R>
Update's DSL API.
 
 Example: 
 DSLContext create = DSL.using(configuration);
 create.update(table)
       .set(field1, value1)
       .set(field2, value2)
       .where(field1.greaterThan(100))
       .execute();
 
| Modifier and Type | Method and Description | 
|---|---|
| UpdateConditionStep<R> | and(Condition condition)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator | 
| UpdateConditionStep<R> | and(Field<java.lang.Boolean> condition)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator | 
| UpdateConditionStep<R> | and(java.lang.String sql)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | and(java.lang.String sql,
   java.lang.Object... bindings)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | and(java.lang.String sql,
   QueryPart... parts)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | andExists(Select<?> select)Combine the currently assembled conditions with an EXISTS clause using
 the  Operator.ANDoperator | 
| UpdateConditionStep<R> | andNot(Condition condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ANDoperator | 
| UpdateConditionStep<R> | andNot(Field<java.lang.Boolean> condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ANDoperator | 
| UpdateConditionStep<R> | andNotExists(Select<?> select)Combine the currently assembled conditions with a NOT EXISTS clause using
 the  Operator.ANDoperator | 
| UpdateConditionStep<R> | or(Condition condition)Combine the currently assembled conditions with another one using the
  Operator.ORoperator | 
| UpdateConditionStep<R> | or(Field<java.lang.Boolean> condition)Combine the currently assembled conditions with another one using the
  Operator.ORoperator | 
| UpdateConditionStep<R> | or(java.lang.String sql)Combine the currently assembled conditions with another one using the
  Operator.ORoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | or(java.lang.String sql,
  java.lang.Object... bindings)Combine the currently assembled conditions with another one using the
  Operator.ORoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | or(java.lang.String sql,
  QueryPart... parts)Combine the currently assembled conditions with another one using the
  Operator.ORoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
| UpdateConditionStep<R> | orExists(Select<?> select)Combine the currently assembled conditions with an EXISTS clause using
 the  Operator.ORoperator | 
| UpdateConditionStep<R> | orNot(Condition condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ORoperator | 
| UpdateConditionStep<R> | orNot(Field<java.lang.Boolean> condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ORoperator | 
| UpdateConditionStep<R> | orNotExists(Select<?> select)Combine the currently assembled conditions with a NOT EXISTS clause using
 the  Operator.ORoperator | 
bind, bind, cancel, close, execute, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeoutattach, detachreturning, returning, returning@Support UpdateConditionStep<R> and(Condition condition)
Operator.AND operator@Support UpdateConditionStep<R> and(Field<java.lang.Boolean> condition)
Operator.AND operator@Support UpdateConditionStep<R> and(java.lang.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 UpdateConditionStep<R> and(java.lang.String sql, java.lang.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 UpdateConditionStep<R> and(java.lang.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 UpdateConditionStep<R> andNot(Condition condition)
Operator.AND operator@Support UpdateConditionStep<R> andNot(Field<java.lang.Boolean> condition)
Operator.AND operator@Support UpdateConditionStep<R> andExists(Select<?> select)
Operator.AND operator@Support UpdateConditionStep<R> andNotExists(Select<?> select)
Operator.AND operator@Support UpdateConditionStep<R> or(Condition condition)
Operator.OR operator@Support UpdateConditionStep<R> or(Field<java.lang.Boolean> condition)
Operator.OR operator@Support UpdateConditionStep<R> or(java.lang.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 UpdateConditionStep<R> or(java.lang.String sql, java.lang.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 UpdateConditionStep<R> or(java.lang.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 UpdateConditionStep<R> orNot(Condition condition)
Operator.OR operator@Support UpdateConditionStep<R> orNot(Field<java.lang.Boolean> condition)
Operator.OR operator@Support UpdateConditionStep<R> orExists(Select<?> select)
Operator.OR operator@Support UpdateConditionStep<R> orNotExists(Select<?> select)
Operator.OR operatorCopyright © 2015. All Rights Reserved.