Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(java.lang.Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
and(Condition) or
and(Field) instead. Due to ambiguity between
calling this method using Field.equals(Object)
argument, vs. calling the other method via a
Field.equal(Object) argument, this method will be
removed in the future. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(Field<java.lang.Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(java.lang.String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(java.lang.String sql,
java.lang.Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(java.lang.String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(java.lang.Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
SelectConnectByAfterStartWithStep.connectBy(Condition) or
SelectConnectByAfterStartWithStep.connectBy(Field) instead. Due to ambiguity between
calling this method using Field.equals(Object)
argument, vs. calling the other method via a
Field.equal(Object) argument, this method will be
removed in the future. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(Condition condition)
Add an Oracle-specific
CONNECT BY clause to the query |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(Field<java.lang.Boolean> condition)
Add an Oracle-specific
CONNECT BY clause to the query |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(SQL sql)
Add an Oracle-specific
CONNECT BY clause to the query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(java.lang.String sql)
Add an Oracle-specific
CONNECT BY clause to the query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(java.lang.String sql,
java.lang.Object... bindings)
Add an Oracle-specific
CONNECT BY clause to the query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(java.lang.String sql,
QueryPart... parts)
Add an Oracle-specific
CONNECT BY clause to the query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(java.lang.Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
SelectConnectByAfterStartWithStep.connectByNoCycle(Condition)
or SelectConnectByAfterStartWithStep.connectByNoCycle(Field) instead. Due to ambiguity
between calling this method using
Field.equals(Object) argument, vs. calling the other
method via a Field.equal(Object) argument, this
method will be removed in the future. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(Condition condition)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(Field<java.lang.Boolean> condition)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(SQL sql)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(java.lang.String sql)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(java.lang.String sql,
java.lang.Object... bindings)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(java.lang.String sql,
QueryPart... parts)
Add an Oracle-specific
CONNECT BY NOCYCLE clause to the
query
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
Copyright © 2018. All Rights Reserved.