Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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);
}
Source by www.codota.com #
 
PREVIOUS NEXT
Tagged: #java
ADD COMMENT
Topic
Name
5+6 =