I\'m trying to connect to a local MSSQL DB through Flask-SQLAlchemy.
Here\'s a code excerpt from my __init__.py file:
__init__.py
from flask import
If someone still stumbled upon this issue and trying to figure out another solution then try with pymssql instead of pyodbc;
pymssql
pyodbc
pip install pymssql
Connection URI would be:
conn_uri = "mssql+pymssql://:@/"