Uses of Class
com.querydsl.sql.SQLQuery
Packages that use SQLQuery
-
Uses of SQLQuery in com.querydsl.sql
Methods in com.querydsl.sql that return SQLQueryModifier and TypeMethodDescriptionSQLQuery.clone(Connection conn) SQLQuery<?>SQLQueryFactory.query()SQLExpressions.select(Expression<?>... exprs) Create a new detached SQLQuery instance with the given projectionstatic <T> SQLQuery<T>SQLExpressions.select(Expression<T> expr) Create a new detached SQLQuery instance with the given projectionSQLQuery.select(Expression<?>... exprs) <U> SQLQuery<U>SQLQuery.select(Expression<U> expr) SQLQueryFactory.select(Expression<?>... exprs) <T> SQLQuery<T>SQLQueryFactory.select(Expression<T> expr) SQLExpressions.selectDistinct(Expression<?>... exprs) Create a new detached SQLQuery instance with the given projectionstatic <T> SQLQuery<T>SQLExpressions.selectDistinct(Expression<T> expr) Create a new detached SQLQuery instance with the given projectionSQLQueryFactory.selectDistinct(Expression<?>... exprs) <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) SQLExpressions.selectOne()Create a new detached SQLQuery instance with one as the projectionSQLQueryFactory.selectOne()SQLExpressions.selectZero()Create a new detached SQLQuery instance with zero as the projectionSQLQueryFactory.selectZero() -
Uses of SQLQuery in com.querydsl.sql.dml
Fields in com.querydsl.sql.dml declared as SQLQueryModifier and TypeFieldDescriptionprotected @Nullable SQLQuery<?>AbstractSQLInsertClause.subQueryBuilderConstructors in com.querydsl.sql.dml with parameters of type SQLQueryModifierConstructorDescriptionAbstractSQLInsertClause(Connection connection, Configuration configuration, RelationalPath<?> entity, SQLQuery<?> subQuery) AbstractSQLInsertClause(Supplier<Connection> connection, Configuration configuration, RelationalPath<?> entity, SQLQuery<?> subQuery) SQLInsertClause(Connection connection, Configuration configuration, RelationalPath<?> entity, SQLQuery<?> subQuery) SQLInsertClause(Connection connection, SQLTemplates templates, RelationalPath<?> entity, SQLQuery<?> subQuery) SQLInsertClause(Supplier<Connection> connection, Configuration configuration, RelationalPath<?> entity, SQLQuery<?> subQuery)