Package | Description |
---|---|
org.apache.cayenne.access |
Contains classes that make up Cayenne ORM stack.
|
org.apache.cayenne.access.translator.select | |
org.apache.cayenne.dba |
Contains database adapter API (DbAdapter) and its default implementation.
|
org.apache.cayenne.dba.db2 |
IBM DB2 DbAdapter.
|
org.apache.cayenne.dba.derby |
Apache Derby DbAdapter.
|
org.apache.cayenne.dba.firebird | |
org.apache.cayenne.dba.h2 | |
org.apache.cayenne.dba.ingres | |
org.apache.cayenne.map |
Contains O/R mapping classes that store relational database
metadata information and map it to Java classes.
|
org.apache.cayenne.query |
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
|
Modifier and Type | Field and Description |
---|---|
protected SelectQuery<?> |
IncrementalFaultList.internalQuery |
Modifier and Type | Method and Description |
---|---|
SelectQuery<?> |
SelectQueryWrapper.unwrap() |
Constructor and Description |
---|
DefaultSelectTranslator(SelectQuery<?> query,
DbAdapter adapter,
EntityResolver entityResolver) |
SelectQueryWrapper(SelectQuery<?> selectQuery) |
Modifier and Type | Method and Description |
---|---|
SelectTranslator |
AutoAdapter.getSelectTranslator(SelectQuery<?> query,
EntityResolver entityResolver) |
SelectTranslator |
DbAdapter.getSelectTranslator(SelectQuery<?> query,
EntityResolver entityResolver)
Returns a SelectTranslator that works with the adapter target database.
|
SelectTranslator |
JdbcAdapter.getSelectTranslator(SelectQuery<?> query,
EntityResolver entityResolver) |
<T> SQLAction |
JdbcActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
DB2ActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
DerbyActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
FirebirdActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
H2ActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
IngresActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
SelectQuery<?> |
SelectQueryDescriptor.buildQuery()
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
PrefetchSelectQuery<T>
A SelectQuery to perform a prefetch based on another query.
|
Modifier and Type | Method and Description |
---|---|
SelectQuery<T> |
SelectQuery.createQuery(Map<String,?> parameters)
Deprecated.
Creates and returns a new SelectQuery built using this query as a
prototype and substituting qualifier parameters with the values from the
map.
|
static SelectQuery<DataRow> |
SelectQuery.dataRowQuery(Class<?> rootClass)
Deprecated.
|
static SelectQuery<DataRow> |
SelectQuery.dataRowQuery(Class<?> rootClass,
Expression qualifier)
Deprecated.
Creates a SelectQuery that selects DataRows that correspond to a given
persistent class that match supplied qualifier.
|
static SelectQuery<DataRow> |
SelectQuery.dataRowQuery(Class<?> rootClass,
Expression qualifier,
List<Ordering> orderings)
Deprecated.
|
static <T> SelectQuery<T> |
SelectQuery.query(Class<T> rootClass)
Deprecated.
Creates a SelectQuery that selects objects of a given persistent class.
|
static <T> SelectQuery<T> |
SelectQuery.query(Class<T> rootClass,
Expression qualifier)
Deprecated.
Creates a SelectQuery that selects objects of a given persistent class
that match supplied qualifier.
|
static <T> SelectQuery<T> |
SelectQuery.query(Class<T> rootClass,
Expression qualifier,
List<? extends Ordering> orderings)
Deprecated.
Creates a SelectQuery that selects objects of a given persistent class
that match supplied qualifier.
|
SelectQuery<T> |
SelectQuery.queryWithParameters(Map<String,?> parameters)
Deprecated.
A shortcut for
queryWithParameters(Map, boolean) that prunes
parts of qualifier that have no parameter value set. |
SelectQuery<T> |
SelectQuery.queryWithParameters(Map<String,?> parameters,
boolean pruneMissing)
Deprecated.
Returns a query built using this query as a prototype, using a set of
parameters to build the qualifier.
|
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
SQLActionVisitor.objectSelectAction(SelectQuery<T> query)
Creates an action to execute a SelectQuery.
|
Copyright © 2001–2020 Apache Cayenne. All rights reserved.