大家好,对python 使用 MySQLdb 模块连接 MySQL用法示例感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看python 使用 MySQLdb 模块连接 MySQL用法示例的例子吧。
# coding=utf-8
#三零脚本 www.q3060.com
#引入mysql python客户端模块
import MySQLdb
import sys
#进行数据库连接
conn= MySQLdb.connect(host="localhost", user="root", passwd="123456", db="pythontab", charset="utf8")
cursor= conn.cursor()
#执行sql
cursor.execute("select * from test")
#列出数据
records= cursor.fetchall()
for rowin records:
for rin row:
print r