hey guys! i am trying to use the DatabaseReader loader. I get this error when trying to run the script:
Data source name not found and no default driver specified (0) (SQLDriverConnect)')
(Background on this error at:
https://sqlalche.me/e/14/rvf5)
The database server and database is on Azure. This is my config:
db = DatabaseReader(
scheme = "mssql", # Database Scheme
host = "host", # Database Host
port = "1433", # Database Port
user = "insert userl", # Database User
password = "insert password", # Database Password
dbname = "database name", # Database Name
)
anyone knows what the problem? π