AdoServer:Fcount Access

<< Click to Display Table of Contents >>

Navigation:  Dataservers > AdoServer Class >

AdoServer:Fcount Access

Previous pageReturn to chapter overviewNext page

Purpose

Get number of fields in the current table

 

Prototype

ACCESS Fcount CLASS AdoServer

 

 

Return

DWORD        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