Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 python/webapp2 开发一个应用程序,这是托管在 Azure Cloud 中的 SQL Azure 数据库所必需的。如何将 python 连接到 SQL Azure?
尝试使用 FreeTDS 的pyodbc并按照此答案中的说明格式化连接字符串:
TDSVER=8.0 tsql -H XXXXXXXX.database.windows.net -U Username -D DatabaseName -p 1433 -P Password
还要确保正确配置 SQL Azure 以允许您的 IP 访问数据库。