Uses of Interface
org.springframework.jdbc.core.BatchPreparedStatementSetter
Package
Description
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
Classes supporting the
org.springframework.jdbc.core
package.-
Uses of BatchPreparedStatementSetter in org.springframework.jdbc.core
Modifier and TypeInterfaceDescriptioninterface
Extension of theBatchPreparedStatementSetter
interface, adding a batch exhaustion check.Modifier and TypeMethodDescriptionint[]
JdbcOperations.batchUpdate
(String sql, BatchPreparedStatementSetter pss) Issue multiple update statements on a single PreparedStatement, using batch updates and a BatchPreparedStatementSetter to set values.int[]
JdbcOperations.batchUpdate
(PreparedStatementCreator psc, BatchPreparedStatementSetter pss, KeyHolder generatedKeyHolder) Issue multiple update statements on a single PreparedStatement, using batch updates and a BatchPreparedStatementSetter to set values.int[]
JdbcTemplate.batchUpdate
(String sql, BatchPreparedStatementSetter pss) int[]
JdbcTemplate.batchUpdate
(PreparedStatementCreator psc, BatchPreparedStatementSetter pss, KeyHolder generatedKeyHolder) -
Uses of BatchPreparedStatementSetter in org.springframework.jdbc.core.support
Modifier and TypeClassDescriptionclass
Abstract implementation of theInterruptibleBatchPreparedStatementSetter
interface, combining the check for available values and setting of those into a single callback methodAbstractInterruptibleBatchPreparedStatementSetter.setValuesIfAvailable(java.sql.PreparedStatement, int)
.