站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 1.2.9 API 文档英文版

BatchPreparedStatementSetter (Spring Framework) - Spring Framework 1.2.9 API 文档英文版


org.springframework.jdbc.core
Interface BatchPreparedStatementSetter


public interface BatchPreparedStatementSetter

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.

Since:
March 2, 2003
Author:
Rod Johnson
See Also:
JdbcTemplate.batchUpdate(String, BatchPreparedStatementSetter)

Method Summary
 int getBatchSize()
          Return the size of the batch.
 void setValues(PreparedStatement ps, int i)
          Set values on the given PreparedStatement.
 

Method Detail

setValues

void setValues(PreparedStatement ps,
               int i)
               throws SQLException
Set values on the given PreparedStatement.

Parameters:
ps - PreparedStatement we'll invoke setter methods on
i - index of the statement we're issuing in the batch, starting from 0
Throws:
SQLException - there is no need to catch SQLExceptions that may be thrown in the implementation of this method. The JdbcTemplate class will handle them.

getBatchSize

int getBatchSize()
Return the size of the batch.



Copyright (c) 2002-2007 The Spring Framework Project.