| 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() |
static SQLQuery<Tuple> |
SQLExpressions.select(Expression<?>... exprs)
Create a new detached SQLQuery instance with the given projection
|
SQLQuery<Tuple> |
SQLQuery.select(Expression<?>... exprs) |
SQLQuery<Tuple> |
SQLQueryFactory.select(Expression<?>... exprs)
Create a new SQLQuery instance with the given projection
|
static <T> SQLQuery<T> |
SQLExpressions.select(Expression<T> expr)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.select(Expression<T> expr)
Create a new SQLQuery instance with the given projection
|
<U> SQLQuery<U> |
SQLQuery.select(Expression<U> expr) |
static SQLQuery<Tuple> |
SQLExpressions.selectDistinct(Expression<?>... exprs)
Create a new detached SQLQuery instance with the given projection
|
SQLQuery<Tuple> |
SQLQueryFactory.selectDistinct(Expression<?>... exprs)
Create a new SQLQuery instance with the given projection
|
static <T> SQLQuery<T> |
SQLExpressions.selectDistinct(Expression<T> expr)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.selectDistinct(Expression<T> expr)
Create a new SQLQuery instance with the given projection
|
static <T> SQLQuery<T> |
SQLExpressions.selectFrom(RelationalPath<T> expr)
Create a new detached SQLQuery instance with the given projection
|
<T> SQLQuery<T> |
SQLQueryFactory.selectFrom(RelationalPath<T> expr)
Create a new detached SQLQuery instance with the given projection and source
|
static SQLQuery<Integer> |
SQLExpressions.selectOne()
Create a new detached SQLQuery instance with one as the projection
|
SQLQuery<Integer> |
SQLQueryFactory.selectOne()
Create a new SQLQuery instance with one as the projection
|
static SQLQuery<Integer> |
SQLExpressions.selectZero()
Create a new detached SQLQuery instance with zero as the projection
|
SQLQuery<Integer> |
SQLQueryFactory.selectZero()
Create a new 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) |
Copyright © 2007–2015 Mysema Ltd. All rights reserved.