Package | Description |
---|---|
org.apache.cayenne.access |
Contains classes that make up Cayenne ORM stack.
|
org.apache.cayenne.access.jdbc |
Contains classes that handle JDBC interactions.
|
org.apache.cayenne.dba |
Contains database adapter API (DbAdapter) and its default implementation.
|
org.apache.cayenne.dba.ingres | |
org.apache.cayenne.dba.sqlserver |
MS SQLServer DbAdapter.
|
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 | Field and Description |
---|---|
protected SelectQuery<?> |
SelectAction.query |
Constructor and Description |
---|
SelectAction(SelectQuery<?> query,
DataNode dataNode) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
JdbcActionBuilder.objectSelectAction(SelectQuery<T> query) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
IngresActionBuilder.objectSelectAction(SelectQuery<T> query) |
Constructor and Description |
---|
IngresSelectAction(SelectQuery<T> query,
DataNode dataNode) |
Modifier and Type | Method and Description |
---|---|
<T> SQLAction |
SQLServerActionBuilder.objectSelectAction(SelectQuery<T> query) |
Constructor and Description |
---|
SQLServerSelectAction(SelectQuery<T> query,
DataNode dataNode) |
Modifier and Type | Class and Description |
---|---|
class |
PrefetchSelectQuery
A SelectQuery to perform a prefetch based on another query.
|
Modifier and Type | Method and Description |
---|---|
SelectQuery<T> |
SelectQuery.createQuery(Map<String,?> parameters)
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) |
static SelectQuery<DataRow> |
SelectQuery.dataRowQuery(Class<?> rootClass,
Expression qualifier)
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) |
static <T> SelectQuery<T> |
SelectQuery.query(Class<T> rootClass)
Creates a SelectQuery that selects objects of a given persistent class.
|
static <T> SelectQuery<T> |
SelectQuery.query(Class<T> rootClass,
Expression qualifier)
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)
Creates a SelectQuery that selects objects of a given persistent class
that match supplied qualifier.
|
SelectQuery<T> |
SelectQuery.queryWithParameters(Map<String,?> parameters)
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)
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–2015 Apache Cayenne. All rights reserved.