org.springframework.jdbc.core
Interface PreparedStatementSetter


public interface PreparedStatementSetter

Callback interface used by the JdbcTemplate class.

This interface sets values on a PreparedStatement provided by the JdbcTemplate class. Implementations are responsible for setting any necessary parameters. SQL with placeholders will already have been supplied.

It's easier to use this interface than PreparedStatementCreator, as the JdbcTemplate will create the prepared statement.

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.update(String, PreparedStatementSetter)

Method Summary
 void setValues(PreparedStatement ps)
          Set values on the given PreparedStatement.
 

Method Detail

setValues

public void setValues(PreparedStatement ps)
               throws SQLException
Set values on the given PreparedStatement.

Parameters:
ps - PreparedStatement we'll invoke setter methods on
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.


Copyright (C) 2003-2004 The Spring Framework Project.