|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BatchPreparedStatementSetter
Batch update callback interface used by the JdbcTemplate
class.
This interface sets values on a PreparedStatement
provided
by the JdbcTemplate class, for each of a number of updates in a batch using the
same SQL. Implementations are responsible for setting any necessary parameters.
SQL with placeholders will already have been supplied.
Implementations do not need to concern themselves with SQLExceptions that may be thrown from operations they attempt. The JdbcTemplate class will catch and handle SQLExceptions appropriately.
JdbcTemplate.batchUpdate(String, BatchPreparedStatementSetter)
,
InterruptibleBatchPreparedStatementSetter
Method Summary | |
---|---|
int |
getBatchSize()
Return the size of the batch. |
void |
setValues(PreparedStatement ps,
int i)
Set parameter values on the given PreparedStatement. |
Method Detail |
---|
void setValues(PreparedStatement ps, int i) throws SQLException
ps
- the PreparedStatement to invoke setter methods oni
- index of the statement we're issuing in the batch, starting from 0
SQLException
- if a SQLException is encountered
(i.e. there is no need to catch SQLException)int getBatchSize()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |