1 21 22 package org.dbunit.database.statement; 23 24 import org.dbunit.database.IDatabaseConnection; 25 26 import java.sql.SQLException ; 27 28 33 public interface IStatementFactory 34 { 35 IBatchStatement createBatchStatement(IDatabaseConnection connection) 36 throws SQLException ; 37 38 IPreparedBatchStatement createPreparedBatchStatement(String sql, 39 IDatabaseConnection connection) throws SQLException ; 40 } 41 42 43 44 45 46 | Popular Tags |