Which Python (sqlalchemy) mssql DB API works in Cygwin?
I'm trying to use sqlalchemy on Cygwin with a MSSQL backend but I cannot 开发者_如何学Goseem to get any of the MSSQL Python DB APIs installed on Cygwin. Is there one that is known to work?
FreeTDS + unixodbc + pyodbc stack will work on Unix-like systems and should therefore work just as well in Cygwin. You should use version 8.0 of TDS protocol. This can be configured in connection string.
精彩评论