Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Creating ascii file
Message
 
 
À
24/10/2002 22:28:57
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00715247
Message ID:
00715249
Vues:
11
You can use FILETOSTR()/STRTOFILE() combination to add files to the end of the result file.
SELECT table1
COPY SDF TO (lcAsciiFile)
SELECT table2
COPY SDF TO (lcTempFile)
STRTOFILE(FILETOSTR(lcTempFile), lcAsciiFile, .T.)
SELECT table3
COPY SDF TO (lcTempFile)
STRTOFILE(FILETOSTR(lcTempFile), lcAsciiFile, .T.)
ERASE (lcTempFile) 
>I have three table from which i need to make an ascii file. All the records in the first table followed by all the records in the second table etc. All the table have different structures. I assumed I could use the copy to command with a type of sdf. However using the copy to on the second table overwrites the txt file from the first copy to. I did not see an additive command or anything like that.
>
>Any other ideas are welcome.
>
>Thank
>Gaylen
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform