1 21 22 package org.dbunit.database.statement; 23 24 import org.dbunit.dataset.datatype.DataType; 25 import org.dbunit.dataset.datatype.TypeCastException; 26 27 import java.sql.SQLException ; 28 29 34 public interface IPreparedBatchStatement 35 { 36 void addValue(Object value, DataType dataType) throws TypeCastException, 37 SQLException ; 38 39 void addBatch() throws SQLException ; 40 41 int executeBatch() throws SQLException ; 42 43 void clearBatch() throws SQLException ; 44 45 void close() throws SQLException ; 46 47 } 48 49 50 51 52 | Popular Tags |