odbc_recordsetSetFieldValue()

Synopsis

Set the field (column) value in the Recordset.

Syntax

odbc_recordsetSetFieldValue ( recPtr As User, _
                              columnName As Any, _
                              value 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.
value any Value to set.
ignoreErrors? boolean Optional; if the argument is True , then database errors are not reported as Intent exceptions; default is False .