I am having issue while using docker.
My app uses a lot of connections to SQLServer with:
pyodbc.connect(‘DRIVER={SQL Server};SERVER=’+server+‘;DATABASE=’+database+‘;UID=’+username+‘;PWD=’+ password)
I was able to deploy the app to docker, but when running it complains about the drivers.
I tried this link, but it does not work:
this is the error i am getting:
Error: (‘01000’, “[01000] [unixODBC][Driver Manager]Can’t open lib ‘SQL Server’ : file not found (0) (SQLDriverConnect)”)
i also tried DRIVER={ODBC Driver 17 for SQL Server} but it does not work either