Skip to content Skip to sidebar Skip to footer

Pymssql: How To Use Windows Authentication When Running On A Non-windows Box

Is there a way for python to connect to MS SQL Server using Windows Authentication, even when not running the python app on a windows box? I'm trying to do this with pymssql, but t

Solution 1:

You can use the SQL Server ODBC driver for linux, and set up Kerberos.

See this article - http://technet.microsoft.com/en-us/library/hh568450.aspx

Post a Comment for "Pymssql: How To Use Windows Authentication When Running On A Non-windows Box"