1 package net.sourceforge.backpedal.api.core;
2
3 import net.sourceforge.backpedal.api.db.BindVariableSet;
4
5 import java.util.Collection;
6
7 public interface BackpedalFactory {
8 public BackpedalStatementEssentials createPreparedStatementEssentials(ParsedStatement backpedalStatement,Collection backpedalBindVariableSets);
9
10 public BindVariableSet createBindVariableSet();
11
12 public ParsedStatement createParsedStatement(String originalSql, String mainKeyword, String[] whereCols, String[] changedCols, String tableName);
13 }
This page was automatically generated by Maven