//打开文件写
AssignFile(txtf,wjm);
Rewrite(txtf);
try
while not Qr_cl.Eof do
begin
temp:='';
//将表的一行拼接为文件的一条记录,写文件
for j:=0 to Qr_cl.FieldCount-1 do temp:=temp+Qr_cl.Fields[j].AsString+',';
temp:=copy(temp,1,length(temp)-1);
Writeln(txtf,temp);
Qr_cl.Next;
end;
finally
closefile(txtf);
end;