Uses of Interface
org.apache.cayenne.query.SQLAction
Packages that use SQLAction
Package
Description
Contains classes that handle JDBC interactions.
Contains database adapter API (DbAdapter) and its default implementation.
IBM DB2 DbAdapter.
Apache Derby DbAdapter.
FrontBase DbAdapter.
HSQLDB DbAdapter.
MySQL DbAdapter.
Oracle DbAdapter.
PostgreSQL DbAdapter.
MS SQLServer DbAdapter.
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
-
Uses of SQLAction in org.apache.cayenne.access.jdbc
Classes in org.apache.cayenne.access.jdbc that implement SQLActionModifier and TypeClassDescriptionclass
A convenience superclass for SQLAction implementations.class
class
Parses an EJBQL statement, converting it to SQL.class
A SQLAction that runs a stored procedure.class
A SQLAction that handles SelectQuery execution.class
Implements a strategy for execution of SQLTemplates. -
Uses of SQLAction in org.apache.cayenne.dba
Methods in org.apache.cayenne.dba that return SQLActionModifier and TypeMethodDescriptionJdbcActionBuilder.batchAction
(BatchQuery query) JdbcActionBuilder.ejbqlAction
(EJBQLQuery query) Returns an instance of SQLAction that should handle the query.Uses JdbcActionBuilder to create the right action.<T> SQLAction
JdbcActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
JdbcActionBuilder.objectSelectAction
(SelectQuery<T> query) Deprecated.JdbcActionBuilder.procedureAction
(ProcedureQuery query) JdbcActionBuilder.sqlAction
(SQLTemplate query) -
Uses of SQLAction in org.apache.cayenne.dba.db2
Classes in org.apache.cayenne.dba.db2 that implement SQLActionMethods in org.apache.cayenne.dba.db2 that return SQLActionModifier and TypeMethodDescriptionUses special action builder to create the right action.<T> SQLAction
DB2ActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
DB2ActionBuilder.objectSelectAction
(SelectQuery<T> query) DB2ActionBuilder.procedureAction
(ProcedureQuery query) -
Uses of SQLAction in org.apache.cayenne.dba.derby
Classes in org.apache.cayenne.dba.derby that implement SQLActionMethods in org.apache.cayenne.dba.derby that return SQLActionModifier and TypeMethodDescription<T> SQLAction
DerbyActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
DerbyActionBuilder.objectSelectAction
(SelectQuery<T> query) -
Uses of SQLAction in org.apache.cayenne.dba.firebird
Classes in org.apache.cayenne.dba.firebird that implement SQLActionMethods in org.apache.cayenne.dba.firebird that return SQLActionModifier and TypeMethodDescription<T> SQLAction
FirebirdActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
FirebirdActionBuilder.objectSelectAction
(SelectQuery<T> query) -
Uses of SQLAction in org.apache.cayenne.dba.frontbase
Classes in org.apache.cayenne.dba.frontbase that implement SQLActionMethods in org.apache.cayenne.dba.frontbase that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.h2
Classes in org.apache.cayenne.dba.h2 that implement SQLActionMethods in org.apache.cayenne.dba.h2 that return SQLActionModifier and TypeMethodDescription<T> SQLAction
H2ActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
H2ActionBuilder.objectSelectAction
(SelectQuery<T> query) -
Uses of SQLAction in org.apache.cayenne.dba.hsqldb
Methods in org.apache.cayenne.dba.hsqldb that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.ingres
Classes in org.apache.cayenne.dba.ingres that implement SQLActionMethods in org.apache.cayenne.dba.ingres that return SQLActionModifier and TypeMethodDescription<T> SQLAction
IngresActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
IngresActionBuilder.objectSelectAction
(SelectQuery<T> query) -
Uses of SQLAction in org.apache.cayenne.dba.mysql
Methods in org.apache.cayenne.dba.mysql that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.oracle
Methods in org.apache.cayenne.dba.oracle that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.postgres
Classes in org.apache.cayenne.dba.postgres that implement SQLActionMethods in org.apache.cayenne.dba.postgres that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.sqlite
Classes in org.apache.cayenne.dba.sqlite that implement SQLActionMethods in org.apache.cayenne.dba.sqlite that return SQLAction -
Uses of SQLAction in org.apache.cayenne.dba.sqlserver
Classes in org.apache.cayenne.dba.sqlserver that implement SQLActionModifier and TypeClassDescriptionclass
class
ProcedureAction for SQLServer MS JDBC driver.class
Methods in org.apache.cayenne.dba.sqlserver that return SQLActionModifier and TypeMethodDescriptionSQLServerActionBuilder.batchAction
(BatchQuery query) Uses SQLServerActionBuilder to create the right action.<T> SQLAction
SQLServerActionBuilder.objectSelectAction
(FluentSelect<T> query) <T> SQLAction
SQLServerActionBuilder.objectSelectAction
(SelectQuery<T> query) SQLServerActionBuilder.procedureAction
(ProcedureQuery query) -
Uses of SQLAction in org.apache.cayenne.query
Methods in org.apache.cayenne.query that return SQLActionModifier and TypeMethodDescriptionSQLActionVisitor.batchAction
(BatchQuery query) Creates an action to execute a batch update query.abstract SQLAction
AbstractQuery.createSQLAction
(SQLActionVisitor visitor) BatchQuery.createSQLAction
(SQLActionVisitor visitor) Calls "batchAction" on the visitor.EJBQLQuery.createSQLAction
(SQLActionVisitor visitor) FluentSelect.createSQLAction
(SQLActionVisitor visitor) IndirectQuery.createSQLAction
(SQLActionVisitor visitor) Throws an exception as indirect query should not be executed directly.ProcedureQuery.createSQLAction
(SQLActionVisitor visitor) Calls "makeProcedure" on the visitor.Query.createSQLAction
(SQLActionVisitor visitor) A callback method invoked by Cayenne during the final execution phase of the query run.QueryChain.createSQLAction
(SQLActionVisitor visitor) Throws an exception as execution should've been delegated to the queries contained in the chain.RefreshQuery.createSQLAction
(SQLActionVisitor visitor) SelectQuery.createSQLAction
(SQLActionVisitor visitor) Deprecated.Calls "makeSelect" on the visitor.SQLTemplate.createSQLAction
(SQLActionVisitor visitor) Calls sqlAction(this) on the visitor.SQLActionVisitor.ejbqlAction
(EJBQLQuery query) Creates an action to execute EJBQL query.<T> SQLAction
SQLActionVisitor.objectSelectAction
(FluentSelect<T> query) Creates an action to execute a FluentSelect.<T> SQLAction
SQLActionVisitor.objectSelectAction
(SelectQuery<T> query) Deprecated.SQLActionVisitor.procedureAction
(ProcedureQuery query) Creates an action to execute a ProcedureQuery.SQLActionVisitor.sqlAction
(SQLTemplate query) Creates an action to execute a SQLTemplate.
SelectQuery
deprecation