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<Integer,?> |
AbstractSQLQueryFactory.selectOne()
Create a new SQL query with one as the projection
|
abstract AbstractSQLQuery<Integer,?> |
AbstractSQLQueryFactory.selectZero()
Create a new SQL query with zero as the projection
|
Modifier and Type | Class and Description |
---|---|
class |
SQLServerQuery<T>
SQLServerQuery provides SQL Server related extensions to SQLQuery |
Modifier and Type | Class and Description |
---|---|
class |
MySQLQuery<T>
MySQLQuery provides MySQL related extensions to SQLQuery |
Modifier and Type | Class and Description |
---|---|
class |
OracleQuery<T>
OracleQuery provides Oracle specific extensions to the base SQL query type |
Modifier and Type | Class and Description |
---|---|
class |
PostgreSQLQuery<T>
PostgreSQLQuery provides PostgreSQL related extensions to SQLQuery |
Modifier and Type | Class and Description |
---|---|
class |
TeradataQuery<T>
TeradataQuery provides Teradata related extensions to SQLQuery |
Copyright © 2007–2016 Querydsl. All rights reserved.