MS SQL Server

ms_sql_server_connect после импортирования всех модулей: def ms_sql_server_connect(): connectionString = ("Driver={SQL Server Native Client 11.0}; Server=MSI\SQLEXPRESS; Database=data_meteo; Trusted_Connection=yes;") connection = pyodbc.connect(connectionString, autocommit=True) return connection 17 ................
................