public class OracleQueryFactory extends AbstractSQLQueryFactory<OracleQuery<?>>
configuration, connection
Constructor and Description |
---|
OracleQueryFactory(Configuration configuration,
java.util.function.Supplier<java.sql.Connection> connection) |
OracleQueryFactory(SQLTemplates templates,
java.util.function.Supplier<java.sql.Connection> connection) |
OracleQueryFactory(java.util.function.Supplier<java.sql.Connection> connection) |
Modifier and Type | Method and Description |
---|---|
OracleQuery<?> |
query() |
OracleQuery<Tuple> |
select(Expression<?>... exprs)
Create a new SQL query with the given projection
|
<T> OracleQuery<T> |
select(Expression<T> expr)
Create a new SQL query with the given projection
|
OracleQuery<Tuple> |
selectDistinct(Expression<?>... exprs)
Create a new SQL query with the given projection
|
<T> OracleQuery<T> |
selectDistinct(Expression<T> expr)
Create a new SQL query with the given projection
|
<T> OracleQuery<T> |
selectFrom(RelationalPath<T> expr)
Create a new SQL query with the given projection and source
|
OracleQuery<java.lang.Integer> |
selectOne()
Create a new SQL query with one as the projection
|
OracleQuery<java.lang.Integer> |
selectZero()
Create a new SQL query with zero as the projection
|
delete, from, from, from, getConfiguration, getConnection, insert, merge, update
public OracleQueryFactory(Configuration configuration, java.util.function.Supplier<java.sql.Connection> connection)
public OracleQueryFactory(java.util.function.Supplier<java.sql.Connection> connection)
public OracleQueryFactory(SQLTemplates templates, java.util.function.Supplier<java.sql.Connection> connection)
public OracleQuery<?> query()
public <T> OracleQuery<T> select(Expression<T> expr)
AbstractSQLQueryFactory
select
in class AbstractSQLQueryFactory<OracleQuery<?>>
T
- type of the projectionexpr
- projectionpublic OracleQuery<Tuple> select(Expression<?>... exprs)
AbstractSQLQueryFactory
select
in class AbstractSQLQueryFactory<OracleQuery<?>>
exprs
- projectionpublic <T> OracleQuery<T> selectDistinct(Expression<T> expr)
AbstractSQLQueryFactory
selectDistinct
in class AbstractSQLQueryFactory<OracleQuery<?>>
T
- type of the projectionexpr
- distinct projectionpublic OracleQuery<Tuple> selectDistinct(Expression<?>... exprs)
AbstractSQLQueryFactory
selectDistinct
in class AbstractSQLQueryFactory<OracleQuery<?>>
exprs
- distinct projectionpublic OracleQuery<java.lang.Integer> selectZero()
AbstractSQLQueryFactory
selectZero
in class AbstractSQLQueryFactory<OracleQuery<?>>
public OracleQuery<java.lang.Integer> selectOne()
AbstractSQLQueryFactory
selectOne
in class AbstractSQLQueryFactory<OracleQuery<?>>
public <T> OracleQuery<T> selectFrom(RelationalPath<T> expr)
AbstractSQLQueryFactory
selectFrom
in class AbstractSQLQueryFactory<OracleQuery<?>>
T
- type of the projectionexpr
- query source and projectionCopyright © 2007–2021 Querydsl. All rights reserved.