I am not real familiar with security, so I wondered if anyone could help. I have SQL server set up that allows authentication of Windows users only. I need to connect to the database to do transactions (update, insert, delete) using a connection string and VB.net.
Can I get authenticated using any type of Windows login? I changed it to SQL Server and Windows, made a user and it works, but I don't think that I want to enable SQL Server and Windows authentication. Is this valid and does it make the database less secure?
This is similar to my connection string.
-UnlceCake
Can I get authenticated using any type of Windows login? I changed it to SQL Server and Windows, made a user and it works, but I don't think that I want to enable SQL Server and Windows authentication. Is this valid and does it make the database less secure?
This is similar to my connection string.
Code:
MyConnection = New System.Data.SQLClient.SqlConnection("server=xx; initial catalog=xx;uid=xx;pwd=xx")
-UnlceCake