DB.GetFieldCount
Description
Description
Returns the number of fields present in the record set. Select must be called prior to making calls to this method.
Syntax
Syntax
Function GetFieldCount
Parameters
Parameters
none
Return value
Return value
integer - the number of fields in the database
Example
Sample code
Dim f_count
If DB.Select() Then
f_count = DB.GetFieldCount()
End If
See also