C
caochen
Unregistered / Unconfirmed
GUEST, unregistred user!
我用ADO控件连接Access数据库
str:='Microsoft.Jet.OLEDB.4.0;';
str:=str+'Data Source='+GetCurrentDir+'/jewelry.mdb;';
str:=str+'Persist Security Info=False';
ADOConnection1.ConnectionString:=str;
try
ADOConnection1.Open();
except
end;
出错,说“找不到可安装的ISAM”,各位大侠,是什么地方出了问题?
str:='Microsoft.Jet.OLEDB.4.0;';
str:=str+'Data Source='+GetCurrentDir+'/jewelry.mdb;';
str:=str+'Persist Security Info=False';
ADOConnection1.ConnectionString:=str;
try
ADOConnection1.Open();
except
end;
出错,说“找不到可安装的ISAM”,各位大侠,是什么地方出了问题?