| Package | Description |
|---|---|
| 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. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
InterruptibleBatchPreparedStatementSetter
Extension of the
BatchPreparedStatementSetter interface,
adding a batch exhaustion check. |
| Modifier and Type | Method and Description |
|---|---|
int[] |
JdbcOperations.batchUpdate(String sql,
BatchPreparedStatementSetter pss)
Issue multiple update statements on a single PreparedStatement,
using batch updates and a BatchPreparedStatementSetter to set values.
|
int[] |
JdbcTemplate.batchUpdate(String sql,
BatchPreparedStatementSetter pss) |
| Modifier and Type | Class and Description |
|---|---|
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). |