1   package net.sourceforge.backpedal.api.db;
2   
3   import java.sql.PreparedStatement;
4   import java.sql.SQLException;
5   import java.util.Iterator;
6   
7   /***
8    * This is essentially an abstraction of the values in a row.  It is used
9    * to store values in a row before that row is changed and thereafter to
10   * set those values into a prepared statement that will perform the backpedal.
11   */
12  public interface BindVariableSet {
13      public void add(BindVariable b);
14      public Iterator iterator();
15      public int size();
16      public void setInto(PreparedStatement statement) throws SQLException;
17  }
This page was automatically generated by Maven