public interface PreparedStatementSetterBatchCustom<T>
SqlTemplate class for
batch updates.
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.
| 限定符和类型 | 方法和说明 |
|---|---|
void |
setValues(PreparedStatement ps,
T argument)
Set parameter values on the given PreparedStatement.
|
void setValues(PreparedStatement ps, T argument) throws SQLException
ps - argument - SQLExceptionCopyright © 2023. All rights reserved.