I am connecting to my SQL database using following connection string
Dim strSQL = "Persist Security Info=False;Inte grated
Security=False; database=myDA;s erver=myServerN ane;User ID=;Password="
Dim conn As New SqlConnection(s trSQL)
conn.Open()
conn.Close()
The above code works fine, even if User ID and password are blank? How is it
possible?
Dim strSQL = "Persist Security Info=False;Inte grated
Security=False; database=myDA;s erver=myServerN ane;User ID=;Password="
Dim conn As New SqlConnection(s trSQL)
conn.Open()
conn.Close()
The above code works fine, even if User ID and password are blank? How is it
possible?
Comment