Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
DBF to Text file
Message
From
23/03/2006 04:03:32
 
 
To
23/03/2006 03:39:21
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01106892
Message ID:
01106905
Views:
28
>>
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)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform