1   package net.sourceforge.backpedal.api.core;
2   
3   import net.sourceforge.backpedal.api.db.BindVariableSet;
4   
5   import java.sql.Connection;
6   import java.sql.SQLException;
7   
8   public interface BackpedalEngine {
9       public BackpedalStatementEssentials backpedalPreparedStatementInsert(Connection connection, ParsedStatement insert, BindVariableSet bindVariables);
10      public BackpedalStatementEssentials backpedalPreparedStatementUpdate(Connection connection, ParsedStatement update, BindVariableSet bindVariables) throws SQLException;
11      public BackpedalStatementEssentials backpedalPreparedStatementDelete(Connection connection, ParsedStatement delete, BindVariableSet bindVariables) throws SQLException;
12  }
This page was automatically generated by Maven