Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create cursor from array
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00749517
Message ID:
00749532
Views:
21
This message has been marked as the solution to the initial question of the thread.
Chuck --

I wonder if you're trying to combine 2 operation into one.
CREATE CURSOR pnHold FROM ARRAY ahold
uses the array to provide the field definitions of the columns (not to populate it with data).

If your data is located in the array, you can accomplish what you want as follows:
CREATE CURSOR pnHold (propno i(4))
SELECT pnHold
APPEND FROM ARRAY aHold
Jay

>Would any know why I get the error "Command contains unrecognized phrase/keyword (Error 36)" from this line of code?
>
>
>CREATE CURSOR pnHold (propno i(4)) FROM ARRAY ahold
>
>
>Thanks, Chuck
Previous
Reply
Map
View

Click here to load this message in the networking platform