如何将数据库为Paradox的内容按一定的格式转换为文本文件(100分)

  • 主题发起人 主题发起人 todennis
  • 开始时间 开始时间
T

todennis

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何将数据库为Paradox的内容按一定的格式转换为文本文件?
例如:
|123|ABC|666667|
|125|dbg|678994|
|128|fhh|994355|
 
var
f : TextFile;
begin
AssignFile(f,'d:/text.txt');
with table1 do
begin
if not active then active := true;
first;
while not eof do
begin
writeln(f,fields[0].asstring,fields[1].asstring,fields[2].asstring);
next;
end;
end;
end;
 
接受答案了.
 
后退
顶部