SQL Connection String Using a Domain User?
Have a look at connectionstrings.com for every possible variation – a very handy resource I use all the time Specifically, you want this format: Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI; This, of course, only works if the domain account in question is the one opening the connection. There’s no easy way to connect with arbitrary credentials – … Read more