Package | Description |
---|---|
com.querydsl.sql.oracle |
Oracle support
|
Modifier and Type | Method and Description |
---|---|
OracleQuery<T> |
OracleQuery.clone(Connection conn) |
OracleQuery<T> |
OracleQuery.connectBy(Predicate cond)
CONNECT BY specifies the relationship between parent rows and child rows of the hierarchy.
|
OracleQuery<T> |
OracleQuery.connectByNocyclePrior(Predicate cond)
CONNECT BY specifies the relationship between parent rows and child rows of the hierarchy.
|
OracleQuery<T> |
OracleQuery.connectByPrior(Predicate cond)
CONNECT BY specifies the relationship between parent rows and child rows of the hierarchy.
|
OracleQuery<T> |
OracleQuery.orderSiblingsBy(Expression<?> path)
ORDER SIBLINGS BY preserves any ordering specified in the hierarchical query clause and then
applies the order_by_clause to the siblings of the hierarchy.
|
OracleQuery<?> |
OracleQueryFactory.query() |
OracleQuery<Tuple> |
OracleQueryFactory.select(Expression<?>... exprs) |
OracleQuery<Tuple> |
OracleQuery.select(Expression<?>... exprs) |
<T> OracleQuery<T> |
OracleQueryFactory.select(Expression<T> expr) |
<U> OracleQuery<U> |
OracleQuery.select(Expression<U> expr) |
OracleQuery<Tuple> |
OracleQueryFactory.selectDistinct(Expression<?>... exprs) |
<T> OracleQuery<T> |
OracleQueryFactory.selectDistinct(Expression<T> expr) |
<T> OracleQuery<T> |
OracleQueryFactory.selectFrom(RelationalPath<T> expr) |
OracleQuery<Integer> |
OracleQueryFactory.selectOne() |
OracleQuery<Integer> |
OracleQueryFactory.selectZero() |
<A> OracleQuery<T> |
OracleQuery.startWith(Predicate cond)
START WITH specifies the root row(s) of the hierarchy.
|
Copyright © 2007–2016 Querydsl. All rights reserved.