本节内容:
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模块的用法。