How to use ODBC driver in Linux App Service via pyodbc to connect to an Azure DB?

Hamish Cox 6 Reputation points
2020-05-07T23:37:15.66+00:00

Hi, I'm trying to set up a Python (flask) App Service that accesses an Azure SQL Server. In order to access the server, the app service needs the ODBC drivers installed.

Error from SQLAlchemy:
2020-05-07T23:23:47.256046274Z sqlalchemy.exc.DBAPIError: (pyodbc.Error) ('01000', "[01000] [unixODBC][Driver Manager]Can't open lib 'SQL Server' : file not found (0) (SQLDriverConnect)")
2020-05-07T23:23:47.256050074Z (Background on this error at: http://sqlalche.me/e/dbapi)

I have tried using 'ODBC 13 for SQL Server' as the driver, along with trying to install unixODBC using a prebuild script, but neither helped.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,930 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. SnehaAgrawal-MSFT 22,706 Reputation points Moderator
    2020-05-08T09:47:55.487+00:00

    Thanks for asking question! Could you please try with ODBC Driver 17 for deploying a python flask app on Linux based app services using pyodbc to connect to an Azure DB.

     pyodbc.connect(‘Driver={ODBC Driver 17 for SQL Server};SERVER=’+server+’;DATABASE=’+database+’;UID=’+username+’;PWD=’+password)
    

    Let me know if issue persists.

    0 comments No comments

  2. Nguyen, Kelvin 1 Reputation point
    2020-08-10T02:36:30.677+00:00

    @SnehaAgrawal-MSFT this won't work since by default the driver is not installed.

    I've tried various way of installing MSSQL Driver for Linux App Service but it just never works.


  3. Raghav Mundhra 21 Reputation points
    2020-09-18T13:39:37.79+00:00

    The installation of Pyodbc should not create any issue, but while using it, do not use ODBC Driver for SQL server on Linux App services. Try with FreeTDS driver instead. FreeTDS drivers are already installed on Azure Linux App Services, so you don't need to install them separately.

    pyodbc.connect(‘Driver={FreeTDS};SERVER=’+server+’;DATABASE=’+database+’;UID=’+username+’;PWD=’+password)
    

    This works for me.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.