G
Guest
I am connecting to my SQL database using following connection string
Dim strSQL = "Persist Security Info=False;Integrated
Security=False;database=myDA;server=myServerNane;User ID=;Password="
Dim conn As New SqlConnection(strSQL)
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;Integrated
Security=False;database=myDA;server=myServerNane;User ID=;Password="
Dim conn As New SqlConnection(strSQL)
conn.Open()
conn.Close()
The above code works fine, even if User ID and password are blank? How is it
possible?