I'm trying to connect to a SQL Server using Pypyodbc on Mac and I'm getting the following error:
pypyodbc.DatabaseError: ('01000', "[01000] [unixODBC][Driver Manager]Can't open lib 'FreeTDS' : file not found")
I have installed freeTDS and unixodbc
brew install unixodbc
brew install freetds
and here is my connection String with dummy data:
connection_String = "Driver=FreeTDS;Server=123.12.12.12;tds_version=7.2;Database=db_db;Uid=username:pwd=password:port=1433"