这篇文章主要为大家详细介绍了python连接mysql查询数据的简单示例,具有一定的参考价值,可以用来参考一下。
对python这个高级语言感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
# @param python链接mysql查询数据实例
# @author 四海网|q1010.com
# coding=utf-8
#引入mysql python客户端模块
import MySQLdb
import sys
#进行数据库连接
conn = MySQLdb.connect(host="localhost", user="root", passwd="123456", db="512pic", charset="utf8")
cursor = conn.cursor()
#执行sql
cursor.execute("select * from test")
#列出数据
records = cursor.fetchall()
for row in records:
for r in row:
print r
# End www_512pic_com
本文来自:http://www.q1010.com/181/1837-0.html
注:关于python连接mysql查询数据的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:查询数据
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。