win7上python2.7连接mysql数据库的方法
一:安装MySQL-python驱动
pip install mysql
二:连接到MySQL服务器的test数据库
#!/usr/bin/python # -*- coding: UTF-8 -*- import mysql.connector if __name__ == "__main__": # 打开数据库连接 conn=mysql.connector.connect(host='IP', user='root', passwd='1234', db='dbName') # 使用cursor()方法获取操作游标 cursor=conn.cursor() # 使用execute方法执行SQL语句 cursor.execute('select * from tset where 1=1') #表查询 # 使用 fetchone() 方法获取一条数据库。 values=cursor.fetchall() print(values) # 关闭数据库连接 cursor.close()
相关推荐
CoderToy 2020-11-16
emmm00 2020-11-17
bianruifeng 2020-11-16
云中舞步 2020-11-12
世樹 2020-11-11
暗夜之城 2020-11-11
Coder技术文摘 2020-09-29
huacuilaifa 2020-10-29
Gexrior 2020-10-22
tufeiax 2020-09-03
疯狂老司机 2020-09-08
王艺强 2020-11-17
aydh 2020-11-12
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
xjd0 2020-09-10