L liuhuione Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-14 #1 如何把txt文件中的内容以句号为分隔符插入建好的dbf数据库中?
V VGA Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-14 #2 编写一段程序 依次读入txt文件中的内容,大致如下: open txt file as f1 and open the table while not eof(f1) begin readln(f1); table.Addrecord; assign every value to the field of table end; close the file and the table
编写一段程序 依次读入txt文件中的内容,大致如下: open txt file as f1 and open the table while not eof(f1) begin readln(f1); table.Addrecord; assign every value to the field of table end; close the file and the table
W WangMing_cn Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-14 #3 可以直接在Foxpro中完成: append from xxx.txt
C creation-zy Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-14 #5 Please use TStringList.CommaText, Good!
张 张剑波 Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-14 #6 stringlist读入文本 一行一行读出,对于每行按句号分割,转入数据库。 //句号做分隔符号是不正统的,“|”“ ,”是正统的。