'Build connection to SQL server DB without ODBC driver

I'm working in restricted environment where I can install only conda supported libraries/packages. I'm trying to build connection to Sql server DB(Azure) via python which requires ODBC driver. Is there any alternate way to build connection to DB without driver?



Solution 1:[1]

Unfortunately No.

ODBC and JDBC are the standard and recommended drivers to connect your Azure SQL Database with backend development.

When it comes to python, pyodbc is the standard python library which runs on ODBC Driver to connect with python.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 UtkarshPal-MT