gpt4 book ai didi

sql-server-2008 - sql server 2008连接字符串错误

转载 作者:行者123 更新时间:2023-12-02 02:29:47 24 4
gpt4 key购买 nike

我知道这是一个非常标准的问题......但无法弄清楚..

所以这就是我想做的:

我想通过 Windows 身份验证连接到我的本地 sql server .\SQLEXPRESS。我可以使用 SQL Server Management Studio 登录。

我的连接字符串是这样的:

string connStr = "Provider=SqlOleDB;Data Source=.\\SQLExpress; Initial Catalog=Sports; Integrated Security=SSPI";

它抛出一个错误:

Cannot open database "Sports" requested by the login. The login failed.

所以我尝试了:

string connStr = "Provider=SqlOleDB;Data Source=.\\SQLExpress; Initial Catalog=Sports; Trusted_Connection=True";

它给了我:

Invalid authorization specification

然后我试了:

string connStr = "Provider=SqlOleDB;Data Source=.\\SQLExpress; Initial Catalog=Sports; Integrated Security=True";

它返回:

No error message available, result code: DB_E_ERRORSOCCURRED(0x80040E21).

有什么想法吗??

更新:我忘了说,我正在使用运行 sql server 2010 express 的虚拟机 windows 7。跟虚拟机有关系吗???

最佳答案

你熟悉http://www.connectionstrings.com吗? ??

我会尝试这样的事情:

Server=.\\SQLExpress;Database=Sports;Integrated Security=SSPI

我希望这应该可行(无需指定提供程序和所有其他内容)。

关于sql-server-2008 - sql server 2008连接字符串错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4199197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com