Originally Posted by
g6649a01@kabsi.at
I tried to comment WindowType=1 and it works!
I tried your COPY TO, but it is different to VFP in
1) fieldnames are also exported, but I could live with this "feature" if there wouldn't be the enclosure with ", because sometimes it is necessary to have the filednames and I could ignore the first line in eg BULK INSERT,...
2) carriage returns are missing, and every usage of this exported file is not working/very different/ugly/... eg
create cursor test (f1 int, f2 int)
insert into test values (1,1)
insert into test values (3,3)
generates in VFP
1|1
3|3
generates in LIANJA
"f1"|"f2"1|13|3
Bookmarks