成都网站建设设计

将想法与焦点和您一起共享

python链接mysql数据库

import MySQLdb
conn=MySQLdb.connect(host='127.0.0.1',user='root',passwd='123456',db='08day5')
cur=conn.cursor()
#打开数据库
#提取数据
reCount=cur.execute('select * from admin')
data =cur.fetchall()
print reCount
print data
#关闭数据
cur.close()
conn.close()

标题名称:python链接mysql数据库
文章路径:http://chengdu.cdxwcx.cn/article/johicd.html