$sql.resultSet.absolute

Moves the cursor to the given row number in this ResultSet object.
Syntax
    $sql.resultSet.absolute{row}
    $sql.resultSet{absolute}{row}
DocumentationMoves the cursor to the given row number in this ResultSet object.
If the row number is positive, the cursor moves to the given row number with respect to the beginning of the result set. The first row is row 1, the second is row 2, and so on.
If the given row number is negative, the cursor moves to an absolute row position with respect to the end of the result set. For example, calling the method absolute(-1) positions the cursor on the last row; calling the method absolute(-2) moves the cursor to the next-to-last row, and so on. An attempt to position the cursor beyond the first/last row in the result set leaves the cursor before the first row or after the last row.
Note: Calling absolute(1) is the same as calling first(). Calling absolute(-1) is the same as calling last().

    Parameters:
      row - the number of the row to which the cursor should move. A positive number indicates the row number counting from the beginning of the result set; a negative number indicates the row number counting from the end of the result set
    Returns:
      true if the cursor is on the result set; false otherwise
    Throws:
      SQLException - if a database access error occurs, or the result set type is TYPE_FORWARD_ONLY
Examples
GroupSQL
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 1