Description
The problem raises when trying to connect to a Azure SQL database.
This is the error:
(pyodbc.InterfaceError) ('IM002', '[IM002] [Microsoft][Gestionnaire de pilotes ODBC] Source de données introuvable et nom de pilote non spécifié (0) (SQLDriverConnect)')
How to correct it
Change in SQLDataNode.py line 97 (__build_conn_string):
Make write_table optional if we don't want to write in it
How to reproduce
Run the demo 'classification_csv_churn_v2' from 'taipy_0_13' branch present here: https://github.com/Avaiga/demos
An error is raised because of the SQL datanode.
Description The problem raises when trying to connect to a Azure SQL database. This is the error: (pyodbc.InterfaceError) ('IM002', '[IM002] [Microsoft][Gestionnaire de pilotes ODBC] Source de données introuvable et nom de pilote non spécifié (0) (SQLDriverConnect)')
How to correct it
Change in SQLDataNode.py line 97 (__build_conn_string):
->
Change the default port from 143 to 1433. so change in taipy.py in line 636 (configure_sql_data_node)
->
How to improve it
Make the 'db_host' parameter directly visible for the configure_sql_data_node function in taipy.py. Line 628-639
->
Make write_table optional if we don't want to write in it
How to reproduce Run the demo 'classification_csv_churn_v2' from 'taipy_0_13' branch present here: https://github.com/Avaiga/demos An error is raised because of the SQL datanode.
Expected behavior We shouldn't have an error.
Runtime environment Windows 11