import MySQLdbconn=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 reCountprint data#关闭数据cur.close()conn.close()
本文共 275 字,大约阅读时间需要 1 分钟。
import MySQLdbconn=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 reCountprint data#关闭数据cur.close()conn.close()
转载于:https://blog.51cto.com/enet01/1826699