我正在尝试使用我的SQL Server 2008上的VB.NET测试与数据库的简单连接。问题是我的登录是使用Windows身份验证模式而我没有输入密码来连接到我的SQL服务器。< / p>
在这种情况下,连接字符串将如何显示?这阻碍了我整天的进步。
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim connetionString As String
Dim connection As SqlConnection
Dim i As Integer
connetionString = "Data Source=PEDRAM-PC\PEDRAM;Initial Catalog=Test;User ID=Pedram-PC\Pedram;Password=bro"
connection = New SqlConnection(connetionString)
Try
connection.Open()
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub
End Class
答案 0 :(得分:9)
添加Integrated Security=SSPI
,而不是用户名和密码。