UL Ext: Positions the cursor relative to the current row.
Public Function MoveRelative(ByVal offset As Integer) As Boolean
public bool MoveRelative(int offset)
offset The number of rows to move. Negative values correspond to moving backward.
True if successful, false otherwise. For example, the method fails if it positions beyond the first or last row.
ULException class A SQL error occurred.
If the row does not exist, the method returns false, and the cursor position is after the last row (ULDataReader.IsEOF) if offset is positive, and before the first row (ULDataReader.IsBOF) if the offset is negative.