python编程实例之MySQLdb读取数据库中的数据

发布时间:2020-08-31编辑:脚本学堂
本文分享一例python代码,使用python中的MySQLdb模块读取数据库中的数据,感兴趣的朋友参考学习下。

本节内容:
python mysqldb/ target=_blank class=infotextkey>MySQLdb模块读取数据

本节我们学习下python 编程实例中,使用MySQLdb模块读取数据的方法,分享一个简单的例子,供大家作个参考。

有关python MySQLdb模块的用法,请参考文章:python MySQLdb操作mysql数据库的例子,python使用MySQLdb连接Mysql数据库

例子:
 

复制代码 代码示例:

#!/usr/bin/python
#site: www.jb200.com
#

import MySQLdb

db= MySQLdb.connect(host="localhost", user="python-test", passwd="python",
db="python-test")

cursor = db.cursor()
stmt = "SELECT * from books"
cursor.execute(stmt)

rows = cursor.fetchall ()
for row in rows:
    print "Row: "
    for col in row :
        print "Column: %s" % (col)
    print "End of Row"
print "Number of rows returned: %d" % cursor.rowcount

cursor.close()

db.close()

以上就是python使用MySQLdb模块读取数据的例子,希望有助于大家掌握MySQLdb模块的用法。