<< Click to Display Table of Contents >> AdoServer:EoF Access |
![]() ![]() ![]() |
Determine if row pointer is beyond the end of current file
ACCESS EOF CLASS AdoServer
LOGIC TRUE if an attempt is made to move the pointer beyond the end of the current view/table. AdoServer:EOF also returns True if AdoServer:Seek() results in no records found
Works similarly to the DbServer EOF() function. As with DbServers , the end of file is determined by the current index order.
//List all first names
oServer := AdoServer"Select * from Cust",...
DO WHILE oServer:EOF
? oServer:FieldGet('first_name')
oServer:Skip(1)
ENDDO
AdoServer, AdoServer:Bof, AdoServer:GoBottom()