Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Does anybody know how times I can ......
Message
From
10/12/1999 17:18:25
 
 
To
10/12/1999 16:25:22
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00302002
Message ID:
00302029
Views:
30
>Hi,
>
>I'm doing the following:
>
>select * from sometable into cursor myCursor
>
>do some code
>
>select * from myCursor where some_logic into cursor myCursor
>
>the above works for 17 times - but not on 18th. Notice I'm selecting from the temp cursor into its self
>
>I got this trick from UI and I was wondering if anybody knew how many times I can do this. Is 18 the limit?? I thought there was no limit?
>John

SELECT - SQL may create a filtered result set rather than an actual disk file, especially for simple queries. If you are going to do repeated operations on the resultant cursor, you should make sure a disk file results by using the NOFILTER clause:
select * from sometable into cursor myCursor <b>NoFilter</b>
Regards. Al

"Violence is the last refuge of the incompetent." -- Isaac Asimov
"Never let your sense of morals prevent you from doing what is right." -- Isaac Asimov

Neither a despot, nor a doormat, be

Every app wants to be a database app when it grows up
Previous
Reply
Map
View

Click here to load this message in the networking platform