Closed gangularamya closed 5 years ago
Ack, taking a look.
Any updates on this? I have been trying and trying to deploy my flask app on azure app service, but this is major step on the way. Everything works if I leave out the dependency on pyodbc
I would like an estimated update on this as well.
Estimated release time, in the next 2-3 weeks.
Running into same issue, Im not able to connect to my Azure SQL database due to the lack of unixodbc.
Any news?...
Same issue here. @JennyLawrance - any update?
Hey! Any news??
Yes, can you try now? All our scale units are upgraded, let me know if you still run into issues.
I m on it. Will update asap. EDIT: THANK YOU! It seems to be working. Can someone else confirm?
I can confirm that this works for me. I have just deployed a working python flask app on Linux based app services using pyodbc to connect to an Azure hosted MS SQL database, connecting like this:
pyodbc.connect('DRIVER={ODBC Driver 17 for SQL Server};SERVER='+server+';DATABASE='+database+';UID='+username+';PWD='+ password)
Thanks for the confirmation @martincabello @chriswue Closing the issue.
Thanks @gangularamya for reporting this and help make the product better.
This issue seems to have come back in a new form. You can not install pyodbc in the default container due to missing dependencies.
Yes, I am having the same issue setting up a new appservice.
I am also having the same issue
I m on it. Will update asap. EDIT: THANK YOU! It seems to be working. Can someone else confirm?
Hi @martincabello please can you share how you deployed the app, was it through docker or azure cli.
A github link would be tremendously appreciated please
Hey. I cant really recall by now. It was a school project. I think it was through Azure Web UI for webapps and then we used the UI again to hook it up for auto deploy from our repo on github.
Hi there. I am having a similar problem to this which I detailed in this SO question. Does anyone have any insights?
Most of the webapps in Python would try to connect external database using pyodbc Looks like we are Unable to use pyodbc as Python Image doesn't have unixodbc installed in App Container https://github.com/mkleehammer/pyodbc/wiki/Install
I think we might need to add below commands as mentioned in above link..