Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Appending from and to cursors
Message
From
02/07/1998 19:17:58
 
 
To
02/07/1998 13:40:31
Jolene Dicks
Human Resources Development Canada
St. John's, Newfoundland, Canada
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00113852
Message ID:
00113941
Views:
23
>I am tyring to update a cursor by appending from another cursor. Having some difficulties, any suggestions.
>
>Jolene Dicks
Apart from what others have said, if both cursors have the same structure you could "union" them
SELECT * ;
   FROM Cursor1 ;
   UNION ALL ;
   SELECT * ;
   FROM Cursor2 ;
   INTO CURSOR Cursor3
Both cursors may need to have been created with the NOFILTER clause - but I'm not sure on this point.
HTH
Previous
Reply
Map
View

Click here to load this message in the networking platform