Package org.apache.cayenne.dba
Class JdbcActionBuilder
java.lang.Object
org.apache.cayenne.dba.JdbcActionBuilder
- All Implemented Interfaces:
SQLActionVisitor
- Direct Known Subclasses:
DB2ActionBuilder
,DerbyActionBuilder
,FirebirdActionBuilder
,FrontBaseActionBuilder
,H2ActionBuilder
,IngresActionBuilder
,SQLServerActionBuilder
A factory of default SQLActions. Adapters usually subclass JdbcActionBuilder to provide
custom actions for various query types.
- Since:
- 1.2
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbatchAction
(BatchQuery query) Creates an action to execute a batch update query.ejbqlAction
(EJBQLQuery query) Creates an action to execute EJBQL query.<T> SQLAction
objectSelectAction
(FluentSelect<T> query) Creates an action to execute a FluentSelect.<T> SQLAction
objectSelectAction
(SelectQuery<T> query) Deprecated.procedureAction
(ProcedureQuery query) Creates an action to execute a ProcedureQuery.sqlAction
(SQLTemplate query) Creates an action to execute a SQLTemplate.
-
Field Details
-
dataNode
-
-
Constructor Details
-
JdbcActionBuilder
- Since:
- 4.0
-
-
Method Details
-
batchAction
Description copied from interface:SQLActionVisitor
Creates an action to execute a batch update query.- Specified by:
batchAction
in interfaceSQLActionVisitor
-
procedureAction
Description copied from interface:SQLActionVisitor
Creates an action to execute a ProcedureQuery.- Specified by:
procedureAction
in interfaceSQLActionVisitor
-
objectSelectAction
Deprecated.Description copied from interface:SQLActionVisitor
Creates an action to execute a SelectQuery.- Specified by:
objectSelectAction
in interfaceSQLActionVisitor
-
objectSelectAction
Description copied from interface:SQLActionVisitor
Creates an action to execute a FluentSelect.- Specified by:
objectSelectAction
in interfaceSQLActionVisitor
- Since:
- 4.2
-
sqlAction
Description copied from interface:SQLActionVisitor
Creates an action to execute a SQLTemplate.- Specified by:
sqlAction
in interfaceSQLActionVisitor
-
ejbqlAction
Description copied from interface:SQLActionVisitor
Creates an action to execute EJBQL query.- Specified by:
ejbqlAction
in interfaceSQLActionVisitor
- Since:
- 3.0
-