Package com.glyart.asql.common.defaults
Class DefaultBatchSetter
- java.lang.Object
-
- com.glyart.asql.common.defaults.DefaultBatchSetter
-
- All Implemented Interfaces:
BatchPreparedStatementSetter
public class DefaultBatchSetter extends Object implements BatchPreparedStatementSetter
-
-
Constructor Summary
Constructors Constructor Description DefaultBatchSetter(List<Object[]> batchParams)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBatchSize()
Gets the size of the batch.protected int
getSqlType(Object param)
Gets the related type of a given parameter.void
setValues(PreparedStatement ps, int i)
Sets parameter values on the given PreparedStatement.
-
-
-
Method Detail
-
setValues
public void setValues(@NotNull PreparedStatement ps, int i) throws SQLException
Description copied from interface:BatchPreparedStatementSetter
Sets parameter values on the given PreparedStatement.- Specified by:
setValues
in interfaceBatchPreparedStatementSetter
- Parameters:
ps
- an active PreparedStatement for invoking setter methodsi
- index of the statement inside the batch, starting from 0- Throws:
SQLException
- if an SQLException is encountered while trying to set values (no need to catch)
-
getBatchSize
public int getBatchSize()
Description copied from interface:BatchPreparedStatementSetter
Gets the size of the batch.- Specified by:
getBatchSize
in interfaceBatchPreparedStatementSetter
- Returns:
- the number of statements in the batch
-
-