Home > Software engineering >  HEROKU: ('08001', '[08001] [Microsoft][ODBC Driver 17 for SQL Server]TCP Provider: Er
HEROKU: ('08001', '[08001] [Microsoft][ODBC Driver 17 for SQL Server]TCP Provider: Er

Time:11-03

I am having an issue trying to use SQL Server with Pyobdc in Django on Heroku. I'm getting this error:

('08001', '[08001] [Microsoft][ODBC Driver 17 for SQL Server]TCP Provider: Error code 0x2746 (10054) (SQLDriverConnect)')

CodePudding user response:

I didn't have any chance to test it with less information but I guess it is related to connectivity configurations. You can read the issue here, some of the users solved the problem by overriding the OpenSSL configuration. I'm not sure how you can handle this on Heroku. You can read the comments to learn how to get trace logs. They might help you to find the solution.

CodePudding user response:

https://github.com/heroku/heroku-buildpack-php/issues/417#issuecomment-845894601

Just found the solution for the problem

  • Related