Uses of Interface
org.apache.cayenne.query.Select
Packages that use Select
Package
Description
Contains persistence APIs directly accessible by users.
Contains classes that make up Cayenne ORM stack.
Contains classes that handle JDBC interactions.
IBM DB2 DbAdapter.
Apache Derby DbAdapter.
MS SQLServer DbAdapter.
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
- 
Uses of Select in org.apache.cayenneMethods in org.apache.cayenne with parameters of type SelectModifier and TypeMethodDescription<T> ResultBatchIterator<T>ObjectContext.batchIterator(Select<T> query, int size) Creates a ResultBatchIterator based on the provided query and batch size.<T> voidObjectContext.iterate(Select<T> query, ResultIteratorCallback<T> callback) Creates a ResultIterator based on the provided query and passes it to a callback for processing.<T> ResultIterator<T>Creates a ResultIterator based on the provided query.<T> List<T>Executes a selecting query, returning a list of persistent objects or data rows.<T> TObjectContext.selectFirst(Select<T> query) Selects a single object using provided query.<T> TExecutes a selecting query, returning either NULL if query matched no objects, or a single object.
- 
Uses of Select in org.apache.cayenne.accessMethods in org.apache.cayenne.access with parameters of type SelectModifier and TypeMethodDescription<T> ResultBatchIterator<T>DataContext.batchIterator(Select<T> query, int size) <T> voidDataContext.iterate(Select<T> query, ResultIteratorCallback<T> callback) <T> ResultIterator<T>Performs a single database select query returning result as aResultIterator.<T> List<T><T> TDataContext.selectFirst(Select<T> query) <T> TDataNode.selectTranslator(Select<?> query) 
- 
Uses of Select in org.apache.cayenne.access.jdbcFields in org.apache.cayenne.access.jdbc declared as SelectConstructors in org.apache.cayenne.access.jdbc with parameters of type Select
- 
Uses of Select in org.apache.cayenne.access.translator.selectMethods in org.apache.cayenne.access.translator.select that return SelectMethods in org.apache.cayenne.access.translator.select with parameters of type SelectModifier and TypeMethodDescriptionDefaultSelectTranslatorFactory.translator(Select<?> query, DbAdapter adapter, EntityResolver entityResolver) SelectTranslatorFactory.translator(Select<?> query, DbAdapter adapter, EntityResolver entityResolver) Creates a proper translator for a BatchQuery
- 
Uses of Select in org.apache.cayenne.dba.db2Constructors in org.apache.cayenne.dba.db2 with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.derbyConstructors in org.apache.cayenne.dba.derby with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.firebirdConstructors in org.apache.cayenne.dba.firebird with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.h2Constructors in org.apache.cayenne.dba.h2 with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.ingresConstructors in org.apache.cayenne.dba.ingres with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.sqliteConstructors in org.apache.cayenne.dba.sqlite with parameters of type Select
- 
Uses of Select in org.apache.cayenne.dba.sqlserverConstructors in org.apache.cayenne.dba.sqlserver with parameters of type SelectModifierConstructorDescriptionSQLServerSelectAction(Select<?> query, DataNode dataNode, boolean needsInMemoryOffset) 
- 
Uses of Select in org.apache.cayenne.queryClasses in org.apache.cayenne.query that implement SelectModifier and TypeClassDescriptionclassColumnSelect<T>A helper builder for queries selecting individual properties based on the root object.classFluentSelect<T,S extends FluentSelect<T, S>> Base class forObjectSelectandColumnSelectclassMappedSelect<T>A query that represents a named parameterized selecting query stored in the mapping.classObjectSelect<T>A selecting query providing chainable API.classA SelectQuery to perform a prefetch based on another query.classSelectById<T>A query to select objects by id.classSQLSelect<T>A selecting query based on raw SQL and featuring fluent API.