Closed sam2332 closed 1 year ago
@sam2332 can you upload the error?
@sam2332 Why not use Kerberos as you login from Linux? Active Directory authentication for SQL Server on Linux
@sam2332 like this: conn.pytds.connect(dsn=hostname, port=port, use_sso=True)
SSPI is only available on Windows. On Linux you need to use Kerberos or NTLM.
https://github.com/denisenkom/pytds/blob/7c73812444dd3c38c893dd88d14e138908069bd0/src/pytds/sspi.py#L2
This line is giving errors on linux systems due to usage of winctypes, is there anyway to migrate to a flow that does not use the windows only types?