无法将我的网站连接到服务器上的 Access DB
我正在尝试将我的网站连接到该数据库 这是它显示的错误:
System.Data.OleDb.OleDbException: Internet Server Error: Object/module not found.
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr)
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
at System.Data.OleDb.OleDbCommand.ExecuteNonQuery()
at DAL.ExecuteNonQuery(String strSql) in c:\ainProject3\App_Code\DAL.cs:line 102
这是我的连接字符串:
Provider=MS Remote; Remote Server=http://89.64.257.131; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\ainProject3\App_Data\db2.mdb
I'm trying to connect my site to that DB
and this is the error its shows:
System.Data.OleDb.OleDbException: Internet Server Error: Object/module not found.
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr)
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
at System.Data.OleDb.OleDbCommand.ExecuteNonQuery()
at DAL.ExecuteNonQuery(String strSql) in c:\ainProject3\App_Code\DAL.cs:line 102
this is my connection string:
Provider=MS Remote; Remote Server=http://89.64.257.131; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\ainProject3\App_Data\db2.mdb
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎这不是访问 Access 数据库的常见(或好的)场景,
请参阅此 文章 了解如何使其工作的提示。
我建议考虑转向比 Access 更强大的东西可能是个好主意
seems like this isn't a common (or good) scenario for accessing an access database
see this article for tips on how to make it work.
I suggest its probably a good idea to look at moving to something a bit more robust than Access