IIS7下使用ASP.NET连接ACCESS数据库时提示如下错误的解决方法
“/”应用程序中的服务器错误。
未在本地计算机上注册“microsoft.jet.oledb.4.0”提供程序。
这是由于我们使用的Win2008系统是64位的,以前Win2003是32位。按以下解决方法:
1、修改连接数据库的代码:
如原代码是
DataPath = "App_Data/#data.mdb";
String constring = "provider=microsoft.jet.oledb.4.0;data source=" + HttpContext.Current.Server.MapPath(DataPath) + "";
修改后的是:
DataPath = "App_Data/#data.mdb";
string constring = "provider=Microsoft.ACE.OLEDB.12.0;data source=" + HttpContext.Current.Server.MapPath(DataPath) + "";
注意:只需要修改为红色字体部份,其它的不用修改。也就是换一种连接数据库的驱动。
相关推荐
风之羽翼 2020-09-14
daillo 2020-04-20
踩风火轮的乌龟 2020-04-19
hithyc 2020-04-17
snowguy 2020-04-10
yhyily 2019-12-15
yangliuhbhd 2020-09-24
luotuofeile 2020-07-28
Strongding 2020-06-25
xuanwenchao 2020-06-14
昊 2020-06-04
ysmh00 2020-05-14
ErixHao 2020-05-08
数据库之扑朔迷离 2020-05-06
whyname 2020-04-29
hitxueliang 2020-04-18
zengfanpei 2020-03-08