python链接mysql查询数据实例

python链接mysql查询数据实例[python基础教程]

使用 MySQLdb 模块连接 MySQL

# coding=utf-8
 
#引入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 row in records:
    for r in row:
        print r

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python链接mysql查询数据实例