Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
DBF to Text file
Message
De
23/03/2006 04:03:32
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01106892
Message ID:
01106905
Vues:
27
>>
Copy field1,field2 to newfile sdf
>>
>>what is wrong i got this message: unrecognized phrase/keywords?
>>
Copy so.compcde,so.ornum,so.custcde to sample1 sdf
>>
>>
>>TIA
>>Ryan
>
>
>COPY TO newFile sdf FIELDS field1,field2
>lnRec = _TALLY
>STRTOFILE(PADL(TRANSFORM(lnRec),2,[0])+CHR(13)+CHR(10)+FILETOSTR([newfile.txt]),[newfile.txt])
>
I would argue that my solution is a little bit simpler, although I used reccount() in stead of _tally. I do agree that _tally is a better solution, especially if there is some filtering involved.
lcFile='newfile.txt'
Copy field1,field2 to (lcFile) sdf
StrToFile(Transform(_tally,'@L 99')+Chr(13)+Chr(10)+FileToStr(lcFile),lcFile)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform