I have a VB .NET program that's using a SQLConnection object to connect to a SQL Server database. The connection string is using Windows Integrated Security.
The connection string is this:
"PERSIST SECURITY INFO=FALSE;INTEGRATED SECURITY=SSPI;DATA SOURCE=SAC_DB6_SRV;INITIAL CATALOG=RM97Mason;CONNECTION TIMEOUT=30"
so it's just connecting with the currently logged in Windows user SAC\bob for e.g. I want to force it to connect with a certain Windows user SAC\exchange everytime. How do I make that happen?
Thanks.