Package org.apache.cayenne.access.jdbc
Class SQLTemplateAction
java.lang.Object
org.apache.cayenne.access.jdbc.SQLTemplateAction
- All Implemented Interfaces:
SQLAction
- Direct Known Subclasses:
FrontBaseTemplateAction
Implements a strategy for execution of SQLTemplates.
- Since:
- 1.2 replaces SQLTemplateExecutionPlan
-
Field Summary
Modifier and TypeFieldDescriptionprotected DataNode
protected DbAdapter
protected DbEntity
protected SQLTemplate
protected QueryMetadata
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
bind
(PreparedStatement preparedStatement, ParameterBinding[] bindings) Binds parameters to the PreparedStatement.protected RowDescriptorBuilder
configureRowDescriptorBuilder
(SQLStatement compiled, ResultSet resultSet) protected void
execute
(Connection connection, OperationObserver callback, SQLStatement compiled, Collection<Number> updateCounts) protected String
Extracts a template string from a SQLTemplate query.Returns unwrapped DbAdapter used to find correct SQL for a given DB.protected int
getQuery()
Returns a SQLTemplate for this action.void
performAction
(Connection connection, OperationObserver callback) Runs a SQLTemplate query, collecting all results.protected void
processSelectResult
(SQLStatement compiled, Connection connection, Statement statement, ResultSet resultSet, OperationObserver callback, long startTime)
-
Field Details
-
query
-
queryMetadata
-
dbEntity
-
dataNode
-
dbAdapter
-
-
Constructor Details
-
SQLTemplateAction
- Since:
- 4.0
-
-
Method Details
-
getAdapter
Returns unwrapped DbAdapter used to find correct SQL for a given DB. -
performAction
public void performAction(Connection connection, OperationObserver callback) throws SQLException, Exception Runs a SQLTemplate query, collecting all results. If a callback expects an iterated result, result processing is stopped after the first ResultSet is encountered.- Specified by:
performAction
in interfaceSQLAction
- Throws:
SQLException
Exception
-
execute
protected void execute(Connection connection, OperationObserver callback, SQLStatement compiled, Collection<Number> updateCounts) throws SQLException, Exception - Throws:
SQLException
Exception
-
processSelectResult
protected void processSelectResult(SQLStatement compiled, Connection connection, Statement statement, ResultSet resultSet, OperationObserver callback, long startTime) throws Exception - Throws:
Exception
-
configureRowDescriptorBuilder
protected RowDescriptorBuilder configureRowDescriptorBuilder(SQLStatement compiled, ResultSet resultSet) throws SQLException - Throws:
SQLException
- Since:
- 3.0
-
extractTemplateString
Extracts a template string from a SQLTemplate query. Exists mainly for the benefit of subclasses that can customize returned template.- Since:
- 1.2
-
bind
protected void bind(PreparedStatement preparedStatement, ParameterBinding[] bindings) throws SQLException, Exception Binds parameters to the PreparedStatement.- Throws:
SQLException
Exception
-
getQuery
Returns a SQLTemplate for this action. -
getFetchOffset
protected int getFetchOffset()- Since:
- 3.0
-