Gets the value of the specified column in the current record. The values in the specified column are collected into a list , starting from the beginning to the end of recordset.
odbc_recordsetGetColumn ( recPtr As User, _ columnName As Any, _ Optional ignoreErrors? As Boolean = False ) As Any
Argument | Type | Description |
---|---|---|
recPtr | user | Recordset pointer that was obtained through odbc_recordsetOpen() call. |
columnName | any | Name of the column or its positional index. |
ignoreErrors? | boolean | Optional; if the argument is True , then database errors are not reported as Intent exceptions; default is False . |