Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
SelectConnectByStep.startWith(Condition) or
SelectConnectByStep.startWith(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. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(Condition condition)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(Field<Boolean> condition)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(SQL sql)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(String sql)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(String sql,
Object... bindings)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(String sql,
QueryPart... parts)
Add an Oracle-specific
START WITH clause to the query's
CONNECT BY clause. |
Copyright © 2019. All rights reserved.