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

python 连接mysql

时间:2017-03-04 11:34:23      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:释放   str   set   for   需要   bsp   mysq   mysql   exe   

#-*-coding=utf-8-*- 
import pymysql

#连接数据库,如果需要指定字符格式可以添加charset=‘utf-8‘
conn=pymysql.connect(host=127.0.0.1,port=3306,user=root,passwd=mima,db=lutest)

cur=conn.cursor()
#获取一个游标

cur.execute(select * from test_employee)

data=cur.fetchall()
for emp in data:
    print(str(emp))
    
cur.close()#关闭游标
conn.close()#释放数据库资源

 

 

  

python 连接mysql

标签:释放   str   set   for   需要   bsp   mysq   mysql   exe   

原文地址:http://www.cnblogs.com/duole/p/6500582.html

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