Moves to the next record in the recordset, which contains the specified value in the column. Returns True if the record was found.
odbc_recordsetFindNext ( recPtr As User, _ columnName As Any, _ testValue As Any, _ Optional ignoreErrors? As Boolean = False ) As Boolean
Argument | Type | Description |
---|---|---|
recPtr | user | Recordset pointer that was obtained through odbc_recordsetOpen() call. |
columnName | any | Name of the column or its positional index. |
testValue | any | Intent value to test. |
ignoreErrors? | boolean | Optional; if the argument is True , then database errors are not reported as Intent exceptions; default is False . |