AdoServer:Fcount

<< Click to Display Table of Contents >>

Navigation:  Dataservers > AdoServer Class > Properties >

AdoServer:Fcount

Previous pageReturn to chapter overviewNext page

Purpose

Get number of fields in the current table

 

Prototype

ACCESS Fcount

 

 

Data Type

LONG        Number of fields in the current table.

 

Example(s)

// Display all fields in the current record

FOR k = 1 TO oServer:fCount

? oServer:FieldGet(k)

NEXT k

 

 

See Also

AdoServer