从Visual Studio 2008连接到SQL Server Express 2005时遇到问题。
这是连接字符串......
Public connect As New SqlConnection( _
"Data Source=MERSI_IT_04\SQLEXPRESS;Initial Catalog=MERSIFAM;
Integrated Security=True")
在本地运行时,连接成功完成,但是当运行脚本的客户端出现连接错误时。
我该如何解决这个问题?
答案 0 :(得分:1)
您最常使用UserName和Password创建一个连接。
并在混合模式下设置SQL Server authentication
。
如果您使用Active Directory并且所有客户端都是域的一部分,则可以使用Windows authentication
。
要在混合模式下创建Connection String
,请使用此
Server=myServerAddress;Database=myDataBase;User Id=myUsername;
Password=myPassword;
总计您可以看到此链接:http://www.connectionstrings.com/sql-server/