public int getResultSetConcurrency() throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _preparedStatement.getResultSetConcurrency(); } finally { profiler.finish(); } }
protected void reset() throws SQLException { PreparedStatement old = this.wrapped; this.wrapped = ((UcanaccessConnection) this.getConnection()) .getHSQLDBConnection() .prepareStatement( sql, wrapped.getResultSetType(), wrapped.getResultSetConcurrency(), wrapped.getResultSetHoldability()); reset(this.wrapped); parametersReset(); old.close(); }
public int getResultSetConcurrency() throws SQLException { return delegate.getResultSetConcurrency(); }
public int getResultSetConcurrency() throws SQLException { return statement.getResultSetConcurrency(); }
@Override public int getResultSetConcurrency() throws SQLException { return stmt.getResultSetConcurrency(); }