org.jooq
Interface DivideByOnConditionStep

All Superinterfaces:
DivideByReturningStep

public interface DivideByOnConditionStep
extends DivideByReturningStep

An intermediate type for the construction of a relational division. This type can be used as a convenience type for connecting more conditions.

Author:
Lukas Eder

Method Summary
 DivideByOnConditionStep and(Condition condition)
          Combine the currently assembled conditions with another one using the Operator.AND operator.
 DivideByOnConditionStep and(String sql)
          Combine the currently assembled conditions with another one using the Operator.AND operator.
 DivideByOnConditionStep and(String sql, Object... bindings)
          Combine the currently assembled conditions with another one using the Operator.AND operator.
 DivideByOnConditionStep andExists(Select<?> select)
          Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator.
 DivideByOnConditionStep andNot(Condition condition)
          Combine the currently assembled conditions with a negated other one using the Operator.AND operator.
 DivideByOnConditionStep andNotExists(Select<?> select)
          Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator.
 DivideByOnConditionStep or(Condition condition)
          Combine the currently assembled conditions with another one using the Operator.OR operator.
 DivideByOnConditionStep or(String sql)
          Combine the currently assembled conditions with another one using the Operator.OR operator.
 DivideByOnConditionStep or(String sql, Object... bindings)
          Combine the currently assembled conditions with another one using the Operator.OR operator.
 DivideByOnConditionStep orExists(Select<?> select)
          Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator.
 DivideByOnConditionStep orNot(Condition condition)
          Combine the currently assembled conditions with a negated other one using the Operator.OR operator.
 DivideByOnConditionStep orNotExists(Select<?> select)
          Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator.
 
Methods inherited from interface org.jooq.DivideByReturningStep
returning, returning
 

Method Detail

and

DivideByOnConditionStep and(Condition condition)
Combine the currently assembled conditions with another one using the Operator.AND operator.


and

DivideByOnConditionStep 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. 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!

See Also:
Factory.condition(String)

and

DivideByOnConditionStep 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. 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!

See Also:
Factory.condition(String, Object...)

andNot

DivideByOnConditionStep andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.AND operator.


andExists

DivideByOnConditionStep andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator.


andNotExists

DivideByOnConditionStep andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator.


or

DivideByOnConditionStep or(Condition condition)
Combine the currently assembled conditions with another one using the Operator.OR operator.


or

DivideByOnConditionStep 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. 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!

See Also:
Factory.condition(String)

or

DivideByOnConditionStep 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. 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!

See Also:
Factory.condition(String, Object...)

orNot

DivideByOnConditionStep orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.OR operator.


orExists

DivideByOnConditionStep orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator.


orNotExists

DivideByOnConditionStep orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator.



Copyright © 2012. All Rights Reserved.