1 21 22 package org.dbunit.database.statement; 23 24 import java.sql.Connection ; 25 import java.sql.SQLException ; 26 import java.sql.Statement ; 27 28 33 public abstract class AbstractBatchStatement implements IBatchStatement 34 { 35 protected final Statement _statement; 36 37 AbstractBatchStatement(Connection connection) throws SQLException  38 { 39 _statement = connection.createStatement(); 40 } 41 42 public void close() throws SQLException  43 { 44 _statement.close(); 45 } 46 47 48 } 49 50 51 52 | Popular Tags |