Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cursor and append
Message
 
To
28/06/1997 18:39:23
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00037995
Message ID:
00038000
Views:
31
>First thanks for your replay I tested this cursor read/write and its nice!!
>
>My second problem is as follow.
>
>In my program I need to append several tables (cursors?) to a table (cursor) is this possible to do?
>Is there some other func. witch does the same, with cursors?
>
>Best regards
>
>Per Simmersholm

Per, as long as the cursor you are appending TO is read/write then you treat it just like a table. The only catch about appending FROM a cursor is that you have to use the 'real name', which is something like "c:\temp\08974713.dbf". You get this with the dbf() function (Vlad used it in his answer to your previous question).

cDBF1 = dbf(mycursor2)
cDBF2 = dbf(mycursor3)

sele MyCursor1
append from (cDBF1)
append from (cDBF2)


HTH
Barbara
Barbara Paltiel, Paltiel Inc.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform