Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Any advantage to using a DLL as middleware in a C/S app?
Message
 
To
11/06/1998 02:49:48
John Ryan
Captain-Cooker Appreciation Society
Taumata Whakatangi ..., New Zealand
General information
Forum:
Visual FoxPro
Category:
Client/server
Miscellaneous
Thread ID:
00105729
Message ID:
00107197
Views:
21
Hi John,

You're really comparing apples to oranges here though. If you're accessing data in VFP using a SCAN it would actually be more like:

SCAN FOR ...
ENDSCAN

A do while would look more like

LOCATE FOR
DO WHILE NOT EOF()
CONTINUE
ENDDO

Using ADO there wouldn't be a FOR condition because the SQL statement on the ADO object would have already retrieved the desired records, so the code in the ADO object would be something like

DO WHILE NOT This.Eof
This.MoveNext()
ENDDO
Mike Feltman

F1 Technologies
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform