|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BatchPreparedStatementSetter | |
---|---|
org.springframework.jdbc.core | Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. |
org.springframework.jdbc.core.support | Classes supporting the org.springframework.jdbc.core package. |
Uses of BatchPreparedStatementSetter in org.springframework.jdbc.core |
---|
Subinterfaces of BatchPreparedStatementSetter in org.springframework.jdbc.core | |
---|---|
interface |
InterruptibleBatchPreparedStatementSetter
Extension of the BatchPreparedStatementSetter interface,
adding a batch exhaustion check. |
Methods in org.springframework.jdbc.core with parameters of type BatchPreparedStatementSetter | |
---|---|
int[] |
JdbcTemplate.batchUpdate(String sql,
BatchPreparedStatementSetter pss)
|
int[] |
JdbcOperations.batchUpdate(String sql,
BatchPreparedStatementSetter pss)
Issue multiple updates on a single PreparedStatement, using JDBC 2.0 batch updates and a BatchPreparedStatementSetter to set values. |
Uses of BatchPreparedStatementSetter in org.springframework.jdbc.core.support |
---|
Classes in org.springframework.jdbc.core.support that implement BatchPreparedStatementSetter | |
---|---|
class |
AbstractInterruptibleBatchPreparedStatementSetter
Abstract implementation of the InterruptibleBatchPreparedStatementSetter
interface, combining the check for available values and setting of those
into a single callback method AbstractInterruptibleBatchPreparedStatementSetter.setValuesIfAvailable(java.sql.PreparedStatement, int) . |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |