我的DBF数据库里已有13万条记录了,现在用delphi开发的软件继续往里面追加记录,可是现在很慢,请问有什么好办法解决? 谢谢各位高手!
我的连接代码:
ConnStr:='Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+ProDir+';Extended '
           +'Properties=DBase 5.0;Persist Security Info=False';
  connDbf.ConnectionString:=connstr;
  try
    connDbf.Open;
  except;
    Application.MessageBox('´ò¿ªdbfÊý¾Ý¿â´íÎó','²Ù×÷Ìáʾ',Mb_OK+$40);
    Abort;
  end;