コード例 #1
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected ResultSet getGeneratedKeys(Statement statement) throws SQLException {
   return statement.getGeneratedKeys();
 }
コード例 #2
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected void executeUpdate(Statement statement, String SQL) throws SQLException {
   statement.executeUpdate(SQL, Statement.RETURN_GENERATED_KEYS);
 }
コード例 #3
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected void close(Statement statement) throws SQLException {
   statement.close();
 }
コード例 #4
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected void addBatch(Statement statement, String row) throws SQLException {
   statement.addBatch(row);
 }
コード例 #5
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected int[] executeBatch(Statement statement) throws SQLException {
   return statement.executeBatch();
 }
コード例 #6
0
ファイル: SQLExecutorImpl.java プロジェクト: mabe02/jdbw
 protected SQLWarning getWarnings(Statement statement) throws SQLException {
   return statement.getWarnings();
 }