You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue must be related to the updated syntax of the connection string, when using the pyodbc module.
It was changed to put a colon instead of a comma between the server and the port.
The problem is that it's different depending on the SQL Driver - pyodbc just transfers the connection string to the driver without any parsing.
The colon syntax is required by My SQL drivers, the old comma syntax is necessary for the SQL Server drivers.
Now different syntax is used depending on the driver in use - should solve the issue.
Got this error back while trying to establish a connection
with connectionstring
The version of pyodbc is 4.0.39 and calling the keyword looks like this in our setup
The text was updated successfully, but these errors were encountered: