将c#连接到不同域中的SQL Server

我有一个C#应用程序试图连接到同一网络但超出域的SQL Server。 我试图使用SqlConnection(我宁愿不使用ODBC或ole db)。 我的代码如下:

con.ConnectionString =
"Server=PCXSQL;"+
"Initial Catalog=BBDD_SinGuid;"+
"User id=\PCXuser;"+
"Password=passwordofuser;";

我相信用户和密码是正确的,并且可以连接到SQL Server。 抛出的错误是用户 PCX 用户登录失败。

我错过了什么?


你需要在这里添加可信连接。

供应商= SQLNCLI10;服务器= myServerName theInstanceName;数据库= MyDatabase的; Trusted_Connection = YES;

欲了解更多信息,请查看下面的链接,它有很多建议可能是你会得到你的答案。

http://www.connectionstrings.com/sql-server-2008/

链接地址: http://www.djcxy.com/p/74079.html

上一篇: Connect c# to a SQL Server in different domain

下一篇: Entity Framework SQL Connection issues with Integrated Security