主题:数据库动态连接的问题
getdir(0,str1);
str4:=';Persist Security Info=False';
str2:=str1+'/data/mansion.mdb';
str3:='Provider=Microsoft.Jet.OLEDB.4.0;Data Source=';
adoconnection1.Connected:=false;
adoconnection1.ConnectionString:=str3+str2+str4;
adoconnection1.Connected:=true;
做了个数据库程序,是ADO动态连接的,可是写完后拷到别人的机子上不能用,adoconnection的连接是在form 的create里面写的,代码如上,大家帮我看看是什么问题呢
str4:=';Persist Security Info=False';
str2:=str1+'/data/mansion.mdb';
str3:='Provider=Microsoft.Jet.OLEDB.4.0;Data Source=';
adoconnection1.Connected:=false;
adoconnection1.ConnectionString:=str3+str2+str4;
adoconnection1.Connected:=true;
做了个数据库程序,是ADO动态连接的,可是写完后拷到别人的机子上不能用,adoconnection的连接是在form 的create里面写的,代码如上,大家帮我看看是什么问题呢