Community Scoring

Was this page helpful?

Tag Tags0

This page has no tags

Page statistics

836 views1 edit(s)2819 characters(s) Page last modified 18:15, 12 Apr 2012 by contentconnector
How to add your knowledge

odbc_recordsetGetRow()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax

    Synopsis

    Gets the values of the current record. Additional arguments control the behavior of the function if the value is null.

    Syntax

    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.