Interface CursorResultSet

    • Method Detail

      • getRowLocation

        RowLocation getRowLocation()
                            throws StandardException
        Returns the row location of the current base table row of the cursor. If this cursor's row is composed of multiple base tables' rows, i.e. due to a join, then a null is returned.
        Returns:
        the row location of the current cursor row.
        Throws:
        StandardException - thrown on failure to get location from storage engine
      • getCurrentRow

        ExecRow getCurrentRow()
                       throws StandardException
        Returns the current row of the result set. REMIND: eventually, this will only return the current row for result sets that need to return it; either some field in the activation or a parameter in the constructor will be used to signal that this needs to function. This will let us limit the number of live objects we are holding on to.

        Returns:
        the last row returned by getNextRow. null if closed.
        Throws:
        StandardException - thrown on failure.