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://myzitong.com/article/johicd.html