这个错误到底是什么?

发布于 2024-11-28 07:23:55 字数 401 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉梦枕江山 2024-12-05 07:23:55

它无法在指定路径找到数据文件,或者用户没有足够的权限来访问该数据文件。

如果数据库设置为 Windows 身份验证模式,您应该尝试将连接字符串更改为如下所示:

Server=<COMPUTER NAME>\SQLEXPRESS;Database=<DATABASE NAME>;Trusted_Connection=True;

Server=<COMPUTER NAME>\SQLEXPRESS;AttachDbFilename=<DIRECTORY PATH>\<FILE NAME>.mdf;Trusted_Connection=True;

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:

Server=<COMPUTER NAME>\SQLEXPRESS;Database=<DATABASE NAME>;Trusted_Connection=True;

OR

Server=<COMPUTER NAME>\SQLEXPRESS;AttachDbFilename=<DIRECTORY PATH>\<FILE NAME>.mdf;Trusted_Connection=True;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文