Gets the values of the current record. Additional arguments control the behavior of the function if the value is null.
odbc_recordsetGetRow ( recPtr As User, _ Optional OnNullReturn As Any = :Error, _ Optional ignoreErrors? As Boolean = False ) As List
Argument | Type | Description |
---|---|---|
recPtr | user | Recordset pointer that was obtained through odbc_recordsetOpen() call |
OnNullReturn | any | Optional; if the value in the record is null, then this argument represents the default value. However, if this argument is :Error (the default value) and ignoreErrors? is True, then NoValue is returned. The scalar value may be specified. If OnNullReturn is list , then its length should be equal to the field count. |
ignoreErrors? | boolean | Optional; if the argument is True , then database errors are not reported as Intent exceptions; default is False . |