ParamCount

For a given row that is a table, this function will contain the number of columns returned.

Group: DataRecord Object


Syntax: vValue = oData.ParamCount

vValue        (Variant) contains the count of the columns in the DataRecord

Example:

For example, a table named Inventory has 2 fields, Part and Quantity, and has 200 records.

Dim iValue As Integer

iValue = oData.ParamCount     ' will return 2.