T
txzhf
Unregistered / Unconfirmed
GUEST, unregistred user!
while not SeekEof(TextFileVar) do<br> begin<br> Readln(TextFileVar,temp);<br> //得到标记数<br> StrLen:=Length(temp);<br> Num:=0;<br> for i:=1 to StrLen do<br> if Copy(temp,i,1)='|' then<br> Num:=Num+1;<br><br> if pos('|',temp)>0 then<br> begin<br> self.qry_yhfb.Append;<br> for j:=0 to Num-1 do<br> begin<br> self.qry_yhfb.Fields[j].AsString:=copy(Temp,1,pos('|',temp)-1);//得到字段内容<br> temp:=copy(temp,pos('|',temp)+1,length(temp)-pos('|',temp));//去除上次降得到的内容<br> end;<br> self.qry_yhfb.Post;<br> end;<br> end;<br> closeFile(TextFileVar);<br> showmessage('成功读取银行文件!');<br>:导入文本式如<br>a|b<br>由于b后面了标示符|,导致文本文件导入不了数据库,各位大侠指点一下如何导入