gpt4 book ai didi

python - Azure 上的 pyodbc

转载 作者:太空宇宙 更新时间:2023-11-04 02:31:18 25 4
gpt4 key购买 nike

我在 Azure 中有一个 python web 应用程序,我想从同一资源组中的 Azure 中的 SQLServer 读取该应用程序。按照这个例子Connecting to Microsoft SQL server using Python ,我已将 pyodbc 添加到我的 requests.txt 中,部署到 Azure 失败,提示它没有可用的正确版本的 C++ 可再发行组件 (9.0)。有什么办法可以解决这个问题,或者是否需要不同的架构(如果需要,是哪个?)?

最佳答案

我尝试在我的 Flask Web 应用程序中访问 Azure SQL 数据库。您可以引用我的工作代码。

view.py

from datetime import datetime
from flask import render_template
from jaygongflask import app
import pyodbc

@app.route('/database')
def database():
"""Renders the about page."""
cnxn = pyodbc.connect('DRIVER={ODBC Driver 13 for SQL Server};SERVER=***.database.windows.net;DATABASE=***;UID=***;PWD=***')
cursor = cnxn.cursor()
cursor.execute("select * from dbo.Student")
row = cursor.fetchall()
#for r in row:
# print r
return render_template(
'database.html',
title='Database',
year=datetime.now().year,
message='Database query result.',
queryResult = row
)

web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="WSGI_HANDLER" value="jaygongflask.app"/>
<add key="PYTHONPATH" value="D:\home\site\wwwroot"/>
<add key="WSGI_LOG" value="D:\home\LogFiles\wfastcgi.log"/>
</appSettings>
<system.webServer>
<handlers>
<add name="PythonHandler" path="*" verb="*" modules="FastCgiModule" scriptProcessor="D:\home\Python361x64\python.exe|D:\home\Python361x64\wfastcgi.py" resourceType="Unspecified" requireAccess="Script"/>
</handlers>
</system.webServer>
</configuration>

安装 pyodbc 包

我的网络应用程序适用于 python361x64 扩展。请引用我执行的步骤如下:

第 1 步:创建 Azure Web 应用程序并添加扩展(此处为 Python 3.6.1 x64)

enter image description here

第 2 步:发布您的 flask 项目并添加 web.config

网络配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="WSGI_HANDLER" value="<Your Project Name>.app"/>
<add key="PYTHONPATH" value="D:\home\site\wwwroot"/>
<add key="WSGI_LOG" value="D:\home\LogFiles\wfastcgi.log"/>
</appSettings>
<system.webServer>
<handlers>
<add name="PythonHandler" path="*" verb="*" modules="FastCgiModule" scriptProcessor="D:\home\Python361x64\python.exe|D:\home\Python361x64\wfastcgi.py" resourceType="Unspecified" requireAccess="Script"/>
</handlers>
</system.webServer>
</configuration>

第3步:切换到Kudu CMD并命令cd Python361x64touch get-pip.py并复制url内容https://通过编辑按钮将 bootstrap.pypa.io/get-pip.py 复制到 get-pip.py 中,然后运行 ​​python get-pip.py 进行安装点工具。

enter image description here

第 4 步:通过 python -m pip install pyodbc 安装 pyodbc 软件包或任何您需要的软件包

enter image description here

更多部署详情,请引用此tutorial .

获取查询结果

访问 URL http://***.azurewebsites.net/database

enter image description here

希望对您有帮助。如有任何疑问,请告诉我。

关于python - Azure 上的 pyodbc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49087407/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com