我用的是ADOCONNECTION:
adoconnection1.ConnectionString := 'Provider=Microsoft.Jet.OLEDB.4.0;'
                        +'Data Source=D:\fili\scgl.mdb'
                        +'Persist Security Info=False;'
                        +'jet oledb: database password=password';
adoconnection1.Open;提示信息说“找不到可安装的ISAM”,我想这段代码是不是有什么问题?谢谢!!!

解决方案 »

  1.   

    是不是你的操作系统里面的ADO组件出了问题哦?
      

  2.   

    adoconnection1.ConnectionString := 'Provider=Microsoft.Jet.OLEDB.4.0;'
                            +'password=password'
                            +'Data Source=D:\fili\scgl.mdb;'
                            +'Persist Security Info=False;';
    adoconnection1.Open;这个应该可以吧
      

  3.   

    adoconnection1.ConnectionString := 'Provider=Microsoft.Jet.OLEDB.4.0;'
                            +'Data Source=D:\fili\scgl.mdb;'
                            +'Persist Security Info=False;'
                            +'jet oledb:database password=password';
      

  4.   

    OK,THANK ALL OF YOU!