org.apache.tapestry.contrib.jdbc
Interface IParameter

All Known Implementing Classes:
BooleanParameter, DoubleParameter, FloatParameter, IntegerParameter, LongParameter, ObjectParameter, ShortParameter, StringParameter, TimestampParameter

public interface IParameter

Represents a parameter within a dynamically generated SQL statement.

Since:
2.3
Version:
$Id: IParameter.java 243791 2004-02-19 17:38:13Z hlship $
Author:
Howard Lewis Ship
See Also:
ParameterizedStatement

Method Summary
 void set(PreparedStatement statement, int index)
          Invokes the appropriate setXXX() method on the PreparedStatement.
 

Method Detail

set

void set(PreparedStatement statement,
         int index)
         throws SQLException
Invokes the appropriate setXXX() method on the PreparedStatement.

Throws:
SQLException