| 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(java.sql.Connection conn) |
SQLQuery<?> |
SQLQueryFactory.query() |
static SQLQuery<Tuple> |
SQLExpressions.select(Expression<?>... exprs)
Create a new detached SQLQuery instance with the given projection
|
SQLQuery<Tuple> |
SQLQueryFactory.select(Expression<?>... exprs) |
SQLQuery<Tuple> |
SQLQuery.select(Expression<?>... exprs) |
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) |
<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) |
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) |
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) |
static SQLQuery<java.lang.Integer> |
SQLExpressions.selectOne()
Create a new detached SQLQuery instance with one as the projection
|
SQLQuery<java.lang.Integer> |
SQLQueryFactory.selectOne() |
static SQLQuery<java.lang.Integer> |
SQLExpressions.selectZero()
Create a new detached SQLQuery instance with zero as the projection
|
SQLQuery<java.lang.Integer> |
SQLQueryFactory.selectZero() |
| Modifier and Type | Field and Description |
|---|---|
protected @Nullable SQLQuery<?> |
AbstractSQLInsertClause.subQueryBuilder |
| Constructor and Description |
|---|
AbstractSQLInsertClause(java.sql.Connection connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
AbstractSQLInsertClause(java.util.function.Supplier<java.sql.Connection> connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(java.sql.Connection connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(java.sql.Connection connection,
SQLTemplates templates,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(java.util.function.Supplier<java.sql.Connection> connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
Copyright © 2007–2021 Querydsl. All rights reserved.