如何把txt文件中的内容以句号为分隔符插入建好的dbf数据库中?(100分)

  • 主题发起人 主题发起人 liuhuione
  • 开始时间 开始时间
L

liuhuione

Unregistered / Unconfirmed
GUEST, unregistred user!
如何把txt文件中的内容以句号为分隔符插入建好的dbf数据库中?
 
编写一段程序 依次读入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
 
可以直接在Foxpro中完成:
append from xxx.txt
 
自己写个split函数!
 
Please use TStringList.CommaText, Good!
 
stringlist读入文本
一行一行读出,对于每行按句号分割,转入数据库。
//句号做分隔符号是不正统的,“|”“ ,”是正统的。
 
接受答案了.
 
后退
顶部