Module org.eclipse.persistence.core
Class ParameterizedSQLBatchWritingMechanism
java.lang.Object
org.eclipse.persistence.internal.databaseaccess.BatchWritingMechanism
org.eclipse.persistence.internal.databaseaccess.ParameterizedSQLBatchWritingMechanism
- All Implemented Interfaces:
Serializable,Cloneable
INTERNAL:
ParameterizedSQLBatchWritingMechanism is a private class, used by the DatabaseAccessor. it provides the required behavior for batching statements, for write, with parameter binding turned on.
- Since:
- OracleAS TopLink 10g (9.0.4)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected DatabaseCallThis variable contains a list of the parameters list passed into the queryprotected DatabaseCallThis member variable is used to keep track of the last SQL string that was executed by this mechanism.Fields inherited from class org.eclipse.persistence.internal.databaseaccess.BatchWritingMechanism
databaseAccessor, executionCount, maxBatchSize, queryTimeoutCache, statementCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidappendCall(AbstractSession session, DatabaseCall dbCall) INTERNAL: This method is called by the DatabaseAccessor to add this statement to the list of statements being batched.voidclear()INTERNAL: This method is used to clear the batched statements without the need to execute the statements first This is used in the case of rollback.voidexecuteBatchedStatements(AbstractSession session) INTERNAL: This method is used by the DatabaseAccessor to clear the batched statements in the case that a non batchable statement is being executedprotected PreparedStatementprepareBatchStatements(AbstractSession session) INTERNAL: This method is used to build the parameterized batch statement for the JDBC2.0 specificationvoidsetLastCallAppended(DatabaseCall lastCallAppended) voidsetParameters(List<List> parameters) voidsetPreviousCall(DatabaseCall previousCall) protected voidswitchMechanisms(AbstractSession session, DatabaseCall dbCall) INTERNAL: Swaps out the Mechanism for the other MechanismMethods inherited from class org.eclipse.persistence.internal.databaseaccess.BatchWritingMechanism
cacheQueryTimeout, clearCacheQueryTimeout, clone, getMaxBatchSize, initialize, setAccessor, setMaxBatchSize
-
Field Details
-
previousCall
This member variable is used to keep track of the last SQL string that was executed by this mechanism. If the current string and previous string match then simply bind in the arguments, otherwise end previous batch and start a new batch -
parameters
This variable contains a list of the parameters list passed into the query -
lastCallAppended
-
-
Constructor Details
-
ParameterizedSQLBatchWritingMechanism
public ParameterizedSQLBatchWritingMechanism() -
ParameterizedSQLBatchWritingMechanism
-
-
Method Details
-
appendCall
INTERNAL: This method is called by the DatabaseAccessor to add this statement to the list of statements being batched. This call may result in the Mechanism executing the batched statements and possibly, switching out the mechanisms- Specified by:
appendCallin classBatchWritingMechanism
-
clear
public void clear()INTERNAL: This method is used to clear the batched statements without the need to execute the statements first This is used in the case of rollback.- Specified by:
clearin classBatchWritingMechanism
-
executeBatchedStatements
INTERNAL: This method is used by the DatabaseAccessor to clear the batched statements in the case that a non batchable statement is being executed- Specified by:
executeBatchedStatementsin classBatchWritingMechanism
-
switchMechanisms
INTERNAL: Swaps out the Mechanism for the other Mechanism -
prepareBatchStatements
protected PreparedStatement prepareBatchStatements(AbstractSession session) throws DatabaseException INTERNAL: This method is used to build the parameterized batch statement for the JDBC2.0 specification- Throws:
DatabaseException
-
getPreviousCall
-
setPreviousCall
-
getParameters
-
setParameters
-
getLastCallAppended
-
setLastCallAppended
-