Move to the next nth record relative to the current one.
odbc_recordsetMove ( recPtr As User, _
n As Integer, _
Optional ignoreErrors? As Boolean = False ) As Boolean
| Argument | Type | Description |
|---|---|---|
| recPtr | user | Recordset pointer that was obtained through odbc_recordsetOpen() call. |
| n | integer | The number of rows to move forward or backward. Positive values move forward, toward the end of the recordset. Negative values move backward, toward the beginning. |
| ignoreErrors? | boolean | Optional; if the argument is True , then database errors are not reported as Intent exceptions; default is False . |