protected ResultSet getGeneratedKeys(Statement statement) throws SQLException { return statement.getGeneratedKeys(); }
protected void executeUpdate(Statement statement, String SQL) throws SQLException { statement.executeUpdate(SQL, Statement.RETURN_GENERATED_KEYS); }
protected void close(Statement statement) throws SQLException { statement.close(); }
protected void addBatch(Statement statement, String row) throws SQLException { statement.addBatch(row); }
protected int[] executeBatch(Statement statement) throws SQLException { return statement.executeBatch(); }
protected SQLWarning getWarnings(Statement statement) throws SQLException { return statement.getWarnings(); }