public int getResultSetHoldability() throws SQLException {

    return resultSet.getHoldability();
  }
  public int getResultSetType() throws SQLException {

    return resultSet.getType();
  }
  public int getResultSetConcurrency() throws SQLException {

    return resultSet.getConcurrency();
  }