Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
TableOnConditionStep |
TableOnConditionStep.and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.and(String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.and(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.andExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.andNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
TableOnConditionStep |
TableOnConditionStep.andNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.AND operator. |
TableOnConditionStep |
TableOnStep.on(Condition... conditions)
Add an
ON clause to the JOIN . |
TableOnConditionStep |
TableOnStep.on(Field<Boolean> condition)
Add an
ON clause to the JOIN . |
TableOnConditionStep |
TableOnStep.on(String sql)
Add an
ON clause to the JOIN . |
TableOnConditionStep |
TableOnStep.on(String sql,
Object... bindings)
Add an
ON clause to the JOIN . |
TableOnConditionStep |
TableOnStep.on(String sql,
QueryPart... parts)
Add an
ON clause to the JOIN . |
TableOnConditionStep |
TableOnStep.onKey()
Join the table on a non-ambiguous foreign key relationship between the
two joined tables.
|
TableOnConditionStep |
TableOnStep.onKey(ForeignKey<?,?> key)
Join the table on a non-ambiguous foreign key relationship between the
two joined tables.
|
TableOnConditionStep |
TableOnStep.onKey(TableField<?,?>... keyFields)
Join the table on a non-ambiguous foreign key relationship between the
two joined tables.
|
TableOnConditionStep |
TableOnConditionStep.or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.or(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.or(String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.or(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.orExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.orNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
TableOnConditionStep |
TableOnConditionStep.orNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.OR operator. |
Copyright © 2014. All Rights Reserved.