Package | Description |
---|---|
com.querydsl.sql.postgresql |
PostgreSQL support
|
Modifier and Type | Method and Description |
---|---|
PostgreSQLQuery<T> |
PostgreSQLQuery.clone(Connection conn) |
PostgreSQLQuery<T> |
PostgreSQLQuery.distinctOn(Expression<?>... exprs)
adds a DISTINCT ON clause
|
PostgreSQLQuery<T> |
PostgreSQLQuery.forShare()
FOR SHARE causes the rows retrieved by the SELECT statement to be locked as though for update.
|
PostgreSQLQuery<T> |
PostgreSQLQuery.noWait()
With NOWAIT, the statement reports an error, rather than waiting, if a selected row cannot
be locked immediately.
|
PostgreSQLQuery<T> |
PostgreSQLQuery.of(RelationalPath<?>... paths)
FOR UPDATE / FOR SHARE OF tables
|
PostgreSQLQuery<?> |
PostgreSQLQueryFactory.query() |
PostgreSQLQuery<Tuple> |
PostgreSQLQueryFactory.select(Expression<?>... exprs) |
PostgreSQLQuery<Tuple> |
PostgreSQLQuery.select(Expression<?>... exprs) |
<T> PostgreSQLQuery<T> |
PostgreSQLQueryFactory.select(Expression<T> expr) |
<U> PostgreSQLQuery<U> |
PostgreSQLQuery.select(Expression<U> expr) |
PostgreSQLQuery<Tuple> |
PostgreSQLQueryFactory.selectDistinct(Expression<?>... exprs) |
<T> PostgreSQLQuery<T> |
PostgreSQLQueryFactory.selectDistinct(Expression<T> expr) |
<T> PostgreSQLQuery<T> |
PostgreSQLQueryFactory.selectFrom(RelationalPath<T> expr) |
PostgreSQLQuery<Integer> |
PostgreSQLQueryFactory.selectOne() |
PostgreSQLQuery<Integer> |
PostgreSQLQueryFactory.selectZero() |
Copyright © 2007–2016 Querydsl. All rights reserved.