Is one "really" faster than the other?
I got into the habit of always using
...INTO TABLE TableName...
instead of
...INTO CURSOR CursorName...
for all SQL queries because I had problems with indexing, record
numbers, etc. and reliability in the older versions.
I've done no real testing, but one seems to work as fast as the other
in VFP9, even with large query results. Is this because cpu speed,
hard drive speed, or does Foxpro really buffer the result anyway and
write it to the hard drive when it gets the chance? Or is it my
imagination that one is as fast as the other?
Steve Meyerson