这个错误到底是什么?
我正在尝试使用 asp.net 制作一个网站来查看数据绑定如何工作,但是当我启动应用程序时,它会抛出此错误。
由于失败,无法生成 SQL Server 的用户实例 检索用户的本地应用程序数据路径。请确保 用户在计算机上有本地用户配置文件。连接将 关闭。
我检查了互联网,发现了很多可能的解决方案,但没有一个对我有用。
我在项目的App_Data文件夹中创建了一个自定义数据库,连接字符串是
Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True
I was trying out making a website with asp.net to see how data binding works but when I launch the application, it throws this error.
Failed to generate a user instance of SQL Server due to failure in
retrieving the user's local application data path. Please make sure
the user has a local user profile on the computer. The connection will
be closed.
I checked the internet and I found a lot of possible solutions but none of them worked for me.
I created a custom database in the App_Data folder of the project and the connection string is
Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它无法在指定路径找到数据文件,或者用户没有足够的权限来访问该数据文件。
如果数据库设置为 Windows 身份验证模式,您应该尝试将连接字符串更改为如下所示:
或
It cannot locate the data file at the specified path, or the user does not have sufficient privileges to access the data file.
If the database is set up for Windows Authentication Mode, you should try changing your connection string to something like this:
OR