码迷,mamicode.com
首页 > 数据库 > 详细

python3使用PyMysql连接mysql数据库

时间:2018-03-29 02:19:28      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:pass   har   connect   utf8   数据库   exec   student   roo   exe   

一:pymysql包的安装(window系统下python3)

easy_install pymysql

二:mysql与python的交互使用

 1 import  pymysql
 2 try:
 3     #获取一个数据库连接
 4     conn = pymysql.connect(host=localhost,user=root,port=3306,passwd=root,db=qe,charset=utf8)
 5     #创建一个对象,用于执行sql语句
 6     cur = conn.cursor()
 7     cur.execute(select * from students)
 8     #data = cur.fetchone() #执行sql语句时获取第一行数据
 9     data = cur.fetchall() #执行sql语句时获取所有行,一行构成一个元组,再将这些元组装入一个元组返回
10     for d in data:
11         print(d)
12     cur.close()#g关闭对象
13     conn.close()#关闭连接
14 except Exception : print(查询失败)

要努力,坚持!!2018-03-28

python3使用PyMysql连接mysql数据库

标签:pass   har   connect   utf8   数据库   exec   student   roo   exe   

原文地址:https://www.cnblogs.com/qigege1104/p/8667126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!