lukemurray / data-atom

Query and manage data sources from Atom
MIT License
152 stars 36 forks source link

How to construct connection string url for windows authentication #177

Open neverMull opened 5 years ago

neverMull commented 5 years ago

I am trying to create a connection using Windows Authentication. I thought the easiest way would be to create a connection string URL. So far I have tried the following configurations:

mssql://username:password@Server/master?domain=DOM mssql://username:@Server/master?domain=DOM mssql://username:password@Server/master?domain=DOM, trustedConnection=true

Some details about how I normally log in through SSMS, using runas netonly domain/username and then use windows authentication from there.

Any guidance I could get would be appreciated.