Java resultset.absolute
# resultSet.absolute(int) is a navigation method to set the cursor on the int row.
@Override
public boolean absolute(int row) throws SQLException {
return rs.absolute(row);
}
RicarHincapie