Package | Description |
---|---|
com.querydsl.sql |
SQL/JDBC support
|
com.querydsl.sql.mssql |
SQL Server support
|
com.querydsl.sql.mysql |
MySQL support
|
com.querydsl.sql.oracle |
Oracle support
|
com.querydsl.sql.postgresql |
PostgreSQL support
|
com.querydsl.sql.teradata |
Teradata support
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSQLQuery<T,Q extends AbstractSQLQuery<T,Q>>
AbstractSQLQuery is the base type for SQL query implementations |
Modifier and Type | Class and Description |
---|---|
class |
SQLQuery<T>
SQLQuery is a JDBC based implementation of the SQLCommonQuery
interface |
Modifier and Type | Method and Description |
---|---|
abstract AbstractSQLQuery<Tuple,?> |
AbstractSQLQueryFactory.select(Expression<?>... exprs)
Create a new SQL query with the given projection
|
abstract <T> AbstractSQLQuery<T,?> |
AbstractSQLQueryFactory.select(Expression<T> expr)
Create a new SQL query with the given projection
|
abstract AbstractSQLQuery<Tuple,?> |
AbstractSQLQueryFactory.selectDistinct(Expression<?>... exprs)
Create a new SQL query with the given projection
|
abstract <T> AbstractSQLQuery<T,?> |
AbstractSQLQueryFactory.selectDistinct(Expression<T> expr)
Create a new SQL query with the given projection
|
abstract <T> AbstractSQLQuery<T,?> |
AbstractSQLQueryFactory.selectFrom(RelationalPath<T> expr)
Create a new SQL query with the given projection and source
|
abstract AbstractSQLQuery<java.lang.Integer,?> |
AbstractSQLQueryFactory.selectOne()
Create a new SQL query with one as the projection
|
abstract AbstractSQLQuery<java.lang.Integer,?> |
AbstractSQLQueryFactory.selectZero()
Create a new SQL query with zero as the projection
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSQLServerQuery<T,C extends AbstractSQLServerQuery<T,C>>
AbstractSQLServerQuery provides SQL Server related extensions to SQLQuery |
class |
SQLServerQuery<T>
SQLServerQuery provides SQL Server related extensions to SQLQuery
If you need to subtype this, use the base class instead. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMySQLQuery<T,C extends AbstractMySQLQuery<T,C>>
MySQLQuery provides MySQL related extensions to SQLQuery. |
class |
MySQLQuery<T>
MySQLQuery provides MySQL related extensions to SQLQuery. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractOracleQuery<T,C extends AbstractOracleQuery<T,C>>
OracleQuery provides Oracle specific extensions to the base SQL query type |
class |
OracleQuery<T>
OracleQuery provides Oracle specific extensions to the base SQL query type
If you need to subtype this, use the base class instead. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPostgreSQLQuery<T,C extends AbstractPostgreSQLQuery<T,C>>
PostgreSQLQuery provides PostgreSQL related extensions to SQLQuery |
class |
PostgreSQLQuery<T>
PostgreSQLQuery provides Postgres related extensions to SQLQuery. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractTeradataQuery<T,C extends AbstractTeradataQuery<T,C>>
AbstractTeradataQuery provides Teradata related extensions to SQLQuery |
class |
TeradataQuery<T>
TeradataQuery provides Teradata related extensions to SQLQuery
If you need to subtype this, use the base class instead. |
Copyright © 2007–2021 Querydsl. All rights reserved.