You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a microsoft sql server I need to connect to using Windows authentication.
With the MS sql server plugin in VSCode, this works by specifying ServerName\DBinstance and specifying "integrated" for the authentication type.
The mssql go driver explicitly supports using windows authentication
However, I cannot tell how to configure sqls to take advantage of that. Using the above as the dataSourceName results in a call to localhost for the server, which is incorrect.
It would be great to get more clarity on how to do this please.
The text was updated successfully, but these errors were encountered:
The connection string for Windows Authentication looks like this:
"server=localhost;user id=;"
The value for "user id" parameter is blank and the "password" parameter is not used in the connection string.
I have a microsoft sql server I need to connect to using Windows authentication.
With the MS sql server plugin in VSCode, this works by specifying
ServerName\DBinstance
and specifying "integrated" for the authentication type.The mssql go driver explicitly supports using windows authentication
However, I cannot tell how to configure sqls to take advantage of that. Using the above as the dataSourceName results in a call to localhost for the server, which is incorrect.
It would be great to get more clarity on how to do this please.
The text was updated successfully, but these errors were encountered: