aspnetdb.mdf 和 Microsoft.ACE.OLEDB.12.0
我正在尝试在 Windows 计算机(XP SP3、Vista、7)上运行我的 asp.net 应用程序,该计算机仅安装 Microsoft.ACE.OLEDB.12.0 作为数据库引擎,并且需要连接到标准 aspnetdb.mdf 用户数据库。
有谁知道在这种情况下可以使用适用于 mdf 文件的连接字符串吗?我使用了这样的连接字符串,但尚未成功:
connectionString = "provider=Microsoft.ACE.OLEDB.12.0;Data Source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" ;
谢谢
I'm trying to run my asp.net application on a windows machine (XP SP3, Vista, 7) which has only Microsoft.ACE.OLEDB.12.0 as the database engine installed and need to connect to the standard aspnetdb.mdf user database.
Does any one know it is possible to use a connection string that works with mdf files in such a condition? I used connection strings like this but no success yet:
connectionString = "provider=Microsoft.ACE.OLEDB.12.0;Data Source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true";
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样的操作:
有关更多连接字符串,请转至 http://www.connectionstrings.com/access-2007
编辑:无法使用 OleDB 连接到 Sql Server 数据库。请安装 SQL Server (Express)。
Try one like this:
For more connectionstrings, go to http://www.connectionstrings.com/access-2007
EDIT: It's not possible to connect to a Sql Server database using OleDB. Install SQL Server (Express) instead.