无法访问SQL数据库

时间:2015-03-30 12:34:09

标签: c# sql connection

我正在开发一个项目,现在我不得不将计算机上的帐户从本地切换到域上的帐户,因此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作为数据库。

1 个答案:

答案 0 :(得分:0)

尝试使用反斜杠连接。你正在进行正斜杠。

Data Source='MEVO\productie3';