首页 > PHP资讯 > Python培训 > python链接mysql查询数据实例

python链接mysql查询数据实例

Python培训

使用 MySQLdb 模块连接 MySQL

# coding=utf-8 #引入mysql python客户端模块import MySQLdbimport sys#进行数据库连接conn = MySQLdb.connect(host="localhost", user="root", passwd="123456", db="pythontab", charset="utf8")cursor = conn.cursor()#执行sqlcursor.execute("select * from test")#列出数据records = cursor.fetchall()for row in records:    for r in row:        print r


Python培训

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持16不支持0