Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Cursor and append
Message
 
À
28/06/1997 18:39:23
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00037995
Message ID:
00038000
Vues:
29
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform