概述
1: 首先确定自己的 python 版本 (命令--cmd -- python) 我这里的版本是 Python 3.6.3 (v3.6.3:2c5fed8, Oct 3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)] on win32
2: 下载安装 Microsoft Visual C++ 14.0。 打开网址 :https://www.visualstudio.com/zh-hans/downloads/?rr=http%3A%2F%2Flandinghub.visualstudio.com%2Fvisual-cpp-build-tools 。
最下方 倒数第二个。 安装Microsoft Visual C++ Redistributable for Visual Studio 2017 对应的版本。
3: 使用命令安装 pip install pyodbc。 如果还报错 需要 Microsoft Visual C++ 14.0。则重启电脑。
4:
import pyodbc
import sys
conn = pyodbc.connect(r'DRIVER={SQL Server Native Client 11.0};SERVER=.;DATABASE=DB_WEBREP;UID=sa;PWD=123')
cursor = conn.cursor()
cursor.execute("select IDCard, Name from T_UserInfo")
row = cursor.fetchone()
if row:
print(row)
5: 输出结果:
PS E:ProjectnotepythonSqlserver> python test.py ('130***************, '尤爱芝')
最后
以上就是真实荷花为你收集整理的python怎么连接sqlserver数据库_python----链接SqlServer 数据库的全部内容,希望文章能够帮你解决python怎么连接sqlserver数据库_python----链接SqlServer 数据库所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复