| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SQLAction | |
|---|---|
| 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.frontbase | FrontBase DbAdapter. | 
| org.apache.cayenne.dba.hsqldb | HSQLDB DbAdapter. | 
| org.apache.cayenne.dba.mysql | MySQL DbAdapter. | 
| org.apache.cayenne.dba.openbase | OpenBase DbAdapter. | 
| org.apache.cayenne.dba.oracle | Oracle DbAdapter. | 
| org.apache.cayenne.dba.postgres | PostgreSQL DbAdapter. | 
| org.apache.cayenne.dba.sqlite | |
| 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. | 
| Uses of SQLAction in org.apache.cayenne.access.jdbc | 
|---|
| Classes in org.apache.cayenne.access.jdbc that implement SQLAction | |
|---|---|
|  class | BaseSQLActionA convenience superclass for SQLAction implementations. | 
|  class | BatchAction | 
|  class | EJBQLActionParses an EJBQL statement, converting it to SQL. | 
|  class | ProcedureActionA SQLAction that runs a stored procedure. | 
|  class | SelectActionA SQLAction that handles SelectQuery execution. | 
|  class | SQLTemplateActionImplements a strategy for execution of SQLTemplates. | 
|  class | UpdateActionDeprecated. since 3.0 as corresponding delete and update queries are deprecated. | 
| Uses of SQLAction in org.apache.cayenne.dba | 
|---|
| Methods in org.apache.cayenne.dba that return SQLAction | |
|---|---|
|  SQLAction | JdbcActionBuilder.batchAction(BatchQuery query) | 
|  SQLAction | JdbcActionBuilder.ejbqlAction(EJBQLQuery query) | 
|  SQLAction | AutoAdapter.getAction(Query query,
          DataNode node) | 
|  SQLAction | DbAdapter.getAction(Query query,
          DataNode node)Returns an instance of SQLAction that should handle the query. | 
|  SQLAction | JdbcAdapter.getAction(Query query,
          DataNode node)Uses JdbcActionBuilder to create the right action. | 
|  SQLAction | JdbcActionBuilder.objectSelectAction(SelectQuery query) | 
|  SQLAction | JdbcActionBuilder.procedureAction(ProcedureQuery query) | 
|  SQLAction | JdbcActionBuilder.sqlAction(SQLTemplate query) | 
|  SQLAction | JdbcActionBuilder.updateAction(Query query)Deprecated. since 3.0 as the corresponding UpdateQueryandDeleteQueryqueries are deprecated. | 
| Uses of SQLAction in org.apache.cayenne.dba.frontbase | 
|---|
| Methods in org.apache.cayenne.dba.frontbase that return SQLAction | |
|---|---|
|  SQLAction | FrontBaseAdapter.getAction(Query query,
          DataNode node)Uses special action builder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.hsqldb | 
|---|
| Methods in org.apache.cayenne.dba.hsqldb that return SQLAction | |
|---|---|
|  SQLAction | HSQLDBAdapter.getAction(Query query,
          DataNode node)Uses special action builder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.mysql | 
|---|
| Methods in org.apache.cayenne.dba.mysql that return SQLAction | |
|---|---|
|  SQLAction | MySQLAdapter.getAction(Query query,
          DataNode node)Uses special action builder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.openbase | 
|---|
| Methods in org.apache.cayenne.dba.openbase that return SQLAction | |
|---|---|
|  SQLAction | OpenBaseAdapter.getAction(Query query,
          DataNode node)Uses special action builder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.oracle | 
|---|
| Methods in org.apache.cayenne.dba.oracle that return SQLAction | |
|---|---|
|  SQLAction | Oracle8Adapter.getAction(Query query,
          DataNode node)Uses OracleActionBuilder to create the right action. | 
|  SQLAction | OracleAdapter.getAction(Query query,
          DataNode node)Uses OracleActionBuilder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.postgres | 
|---|
| Methods in org.apache.cayenne.dba.postgres that return SQLAction | |
|---|---|
|  SQLAction | PostgresAdapter.getAction(Query query,
          DataNode node)Uses PostgresActionBuilder to create the right action. | 
| Uses of SQLAction in org.apache.cayenne.dba.sqlite | 
|---|
| Methods in org.apache.cayenne.dba.sqlite that return SQLAction | |
|---|---|
|  SQLAction | SQLiteAdapter.getAction(Query query,
          DataNode node) | 
| Uses of SQLAction in org.apache.cayenne.dba.sqlserver | 
|---|
| Classes in org.apache.cayenne.dba.sqlserver that implement SQLAction | |
|---|---|
|  class | SQLServerBatchAction | 
|  class | SQLServerProcedureActionProcedureAction for SQLServer MS JDBC driver. | 
|  class | SQLServerSelectAction | 
| Methods in org.apache.cayenne.dba.sqlserver that return SQLAction | |
|---|---|
|  SQLAction | SQLServerActionBuilder.batchAction(BatchQuery query) | 
|  SQLAction | SQLServerAdapter.getAction(Query query,
          DataNode node)Uses SQLServerActionBuilder to create the right action. | 
|  SQLAction | SQLServerActionBuilder.objectSelectAction(SelectQuery query) | 
|  SQLAction | SQLServerActionBuilder.procedureAction(ProcedureQuery query) | 
| Uses of SQLAction in org.apache.cayenne.query | 
|---|
| Methods in org.apache.cayenne.query that return SQLAction | |
|---|---|
|  SQLAction | SQLActionVisitor.batchAction(BatchQuery query)Creates an action to execute a batch update query. | 
| abstract  SQLAction | AbstractQuery.createSQLAction(SQLActionVisitor visitor) | 
|  SQLAction | BatchQuery.createSQLAction(SQLActionVisitor visitor)Calls "batchAction" on the visitor. | 
|  SQLAction | DeleteQuery.createSQLAction(SQLActionVisitor visitor)Deprecated. Calls "makeUpdate" on the visitor. | 
|  SQLAction | EJBQLQuery.createSQLAction(SQLActionVisitor visitor) | 
|  SQLAction | IndirectQuery.createSQLAction(SQLActionVisitor visitor)Throws an exception as indirect query should not be executed directly. | 
|  SQLAction | ProcedureQuery.createSQLAction(SQLActionVisitor visitor)Calls "makeProcedure" on the visitor. | 
|  SQLAction | Query.createSQLAction(SQLActionVisitor visitor)A callback method invoked by Cayenne during the final execution phase of the query run. | 
|  SQLAction | QueryChain.createSQLAction(SQLActionVisitor visitor)Throws an exception as execution should've been delegated to the queries contained in the chain. | 
|  SQLAction | RefreshQuery.createSQLAction(SQLActionVisitor visitor) | 
|  SQLAction | SelectQuery.createSQLAction(SQLActionVisitor visitor)Calls "makeSelect" on the visitor. | 
|  SQLAction | SQLTemplate.createSQLAction(SQLActionVisitor visitor)Calls sqlAction(this) on the visitor. | 
|  SQLAction | UpdateQuery.createSQLAction(SQLActionVisitor visitor)Deprecated. Calls "makeUpdate" on the visitor. | 
|  SQLAction | SQLActionVisitor.ejbqlAction(EJBQLQuery query)Creates an action to execute EJBQL query. | 
|  SQLAction | SQLActionVisitor.objectSelectAction(SelectQuery query)Creates an action to execute a SelectQuery. | 
|  SQLAction | SQLActionVisitor.procedureAction(ProcedureQuery query)Creates an action to execute a ProcedureQuery. | 
|  SQLAction | SQLActionVisitor.sqlAction(SQLTemplate query)Creates an action to execute a SQLTemplate. | 
|  SQLAction | SQLActionVisitor.updateAction(Query query)Deprecated. since 3.0 as the corresponding UpdateQueryandDeleteQueryqueries are deprecated. | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||