我用Delphi7开发的DOS命令行程序,一使用TADOConnection对象连接数据库就出错:代码:  with DataMod do
  begin
    Connection.ConnectionString:='Provider=SQLOLEDB.1;Password='
      +Password+';Persist Security Info=True;User ID='
      +User+';Initial Catalog=AHD;Data Source='+Address;
    Connection.Connected:=True;
  end;出错信息:Exception EAccessViolation in module usvd_nty_db.exe at 00059090.
Access violation at address 00459090 in module 'nty_db.exe'. Read of addre
s 00000058.
请问要如何该?谢谢!