(Connection connection, String sql)
| 5046 | } |
| 5047 | |
| 5048 | private Statement getStatement(Connection connection, String sql) throws SQLException { |
| 5049 | LOG.fine(sql); |
| 5050 | Statement stmt = getAbstractStatement(new CreateStatementCommand(), connection, sql); |
| 5051 | configure(stmt); |
| 5052 | return stmt; |
| 5053 | } |
| 5054 | |
| 5055 | private PreparedStatement getPreparedStatement(Connection connection, String sql, List<?> params, int returnGeneratedKeys) throws SQLException { |
| 5056 | SqlWithParams updated = checkForNamedParams(sql, params); |
no test coverage detected