Can't open lib 'ODBC Driver 13 for SQL Server'? Sym linking issue?

前端 未结 9 1441
无人共我
无人共我 2020-11-27 12:20

When I try to connect to a sql server database with pyodbc (on mac):

import pyodbc

server = \'####\'
database = \'####\'
username = \'####@####\'
password =         


        
9条回答
  •  北荒
    北荒 (楼主)
    2020-11-27 12:57

    In my case, I fixed the problem with three steps as follow:

    # Step1: install unixodbc 
    brew install unixodbc
    
    # Step2: install Microsoft ODBC Driver for SQL Server on MacOS
    
    brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
    brew update
    brew install msodbcsql mssql-tools
    
    # Step3:verify odbcinst configuration path is correct
    
    odbcinst -j
    
    sudo ln -s /usr/local/etc/odbcinst.ini /etc/odbcinst.ini
    sudo ln -s /usr/local/etc/odbc.ini /etc/odbc.ini
    

提交回复
热议问题