Package | Description |
---|---|
com.querydsl.sql |
SQL/JDBC support
|
com.querydsl.sql.dml |
DML operations support
|
Modifier and Type | Method and Description |
---|---|
SQLQuery<T> |
SQLQuery.clone(Connection conn) |
SQLQuery<?> |
SQLQueryFactory.query() |
SQLQuery<Tuple> |
SQLQueryFactory.select(Expression<?>... exprs) |
SQLQuery<Tuple> |
SQLQuery.select(Expression<?>... exprs) |
static SQLQuery<Tuple> |
SQLExpressions.select(Expression<?>... exprs)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.select(Expression<T> expr) |
static <T> SQLQuery<T> |
SQLExpressions.select(Expression<T> expr)
Create a new detached SQLQuery instance with the given projection
|
<U> SQLQuery<U> |
SQLQuery.select(Expression<U> expr) |
SQLQuery<Tuple> |
SQLQueryFactory.selectDistinct(Expression<?>... exprs) |
static SQLQuery<Tuple> |
SQLExpressions.selectDistinct(Expression<?>... exprs)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.selectDistinct(Expression<T> expr) |
static <T> SQLQuery<T> |
SQLExpressions.selectDistinct(Expression<T> expr)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.selectFrom(RelationalPath<T> expr) |
static <T> SQLQuery<T> |
SQLExpressions.selectFrom(RelationalPath<T> expr)
Create a new detached SQLQuery instance with the given projection
|
SQLQuery<Integer> |
SQLQueryFactory.selectOne() |
static SQLQuery<Integer> |
SQLExpressions.selectOne()
Create a new detached SQLQuery instance with one as the projection
|
SQLQuery<Integer> |
SQLQueryFactory.selectZero() |
static SQLQuery<Integer> |
SQLExpressions.selectZero()
Create a new detached SQLQuery instance with zero as the projection
|
Constructor and Description |
---|
SQLInsertClause(Connection connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(Connection connection,
SQLTemplates templates,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(javax.inject.Provider<Connection> connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
Copyright © 2007–2016 Querydsl. All rights reserved.