I am trying to connect to a sql server with a different username/password combination than on my local account. I know it is valid credentials, since i am able to login through SSMS.
I've tried the following:
connection_string = "DRIVER={SQL Server};SERVER=server;DATABASE=db;UID=username;PWD=password"
connection_url = URL.create("mssql", query={"odbc_connect": connection_string})
Where i get the login failed response:
[SQL Server]Login failed for user 'username'. (18456)
I am trying to connect to a microsoft sql server (on the same network)