我正在开发一个项目,现在我不得不将计算机上的帐户从本地切换到域上的帐户,因此Windows身份验证已更改。所以我做了一个新的登录,它适用于域上的帐户,但当我从
更改连接字符串时Data Source=productie3;
到
Data Source='MEVO/productie3';
//tried with either \ or /
//direct connection (using SQL Server Management Studio) to the database using the
//windows authentication works fine
我在没有单引号的情况下尝试过它,
但它仍然无效。
我用它来允许删除访问权限
USE [DB name];
GO
EXEC sp_configure 'remote access', 0 ;
GO
RECONFIGURE ;
GO
但它仍然不允许它连接,如果有人知道我做错了请告诉我。我正在使用Microsoft SQL Server Management Studio
作为数据库。
答案 0 :(得分:0)
尝试使用反斜杠连接。你正在进行正斜杠。
Data Source='MEVO\productie3';