I can use pymssql to connect to SQLServer using Windows Authentication:

conn = pymssql.connect(host='..', database='..', trusted=True)

But how could I use SQLAlchemy to connect to SQLServer using Windows Authenticaton with pymssql driver?

The example given by SQLAlchemy is:

mssql+pymssql://<username>:<password>@<freetds_name>

Since I use Windows Authentication, I cannot manually set the username and password.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I do not have pymssql to check, but try the version below:

mssql+pymssql://<freetds_name>?trusted=True
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.