我正在使用此连接字符串进行服务器身份验证,
Dim rs As New ADODB.Recordset
strConnectionString = "Provider=SQLOLEDB.1;Persyst Security Info=False;User Id=fileade;Password=fileade;Initial Catalog=Fileade;Data Source=10.237.225.170;Command Properties='Command Time Out=45'"
Windows身份验证中的连接字符串是什么?
答案 0 :(得分:1)
设置集成安全性=真
这是完整的字符串:
Provider=SQLOLEDB.1;Integrated Security=True;Initial Catalog=Fileade;Data Source=10.237.225.170;Persyst Security Info=False;Command Properties='Command Time Out=45'"
答案 1 :(得分:0)
strConnectionString = "Provider=SQLOLEDB.1;Persyst Security Info=False;User Id=fileade;Password=fileade;Integrated Security=true;Initial Catalog=Fileade;Data Source=10.237.225.170;Command Properties='Command Time Out=45'"
答案 2 :(得分:0)
我通常使用Excel为我创建连接字符串。只需尝试使用您需要的选项连接到您的服务器,数据连接属性将具有连接字符串。
我认为您必须将集成安全性设置为SSPI
这是一个适合我的字符串,我根据你的情况进行了修改:
pages.content
希望有所帮助。