我创建了一个SQL连接,如下所示:
SqlConnection scSqlConnection = new SqlConnection("Server= " + ".\\" + strInstanceName + ";Initial Catalog=" + "master" + ";Integrated Security=True;");
当我尝试在我的应用程序中打开此连接时没有问题所以我希望能够在windowsAuthentication
模式下通过SSMS进行连接,但是当我尝试通过SQL服务器管理连接时在Server name = .\strInstanceName
模式下windowsAuthentication
,我收到以下错误:
用户a \ b 的登录失败
请你帮助我吗?