pyodbc - error while running application within a container

后端 未结 1 1456
日久生厌
日久生厌 2021-01-19 05:04

I am having a python application that uses mssql - instead of using pymssql, i was trying pyodbc. There seems to be no problems while running the application in a Windows lo

相关标签:
1条回答
  • 2021-01-19 05:33

    The ubuntu environment is not having the odbc library, so it need to be installed using

    sudo apt install unixodbc-dev 
    

    once installed update the ubuntu using

    sudo apt-get update
    

    It will resolve the issue.

    For further reading go to this link

    0 讨论(0)
提交回复
热议问题