码迷,mamicode.com
首页 > 数据库 > 详细

使用Python操作MySQL

时间:2014-12-10 21:08:08      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   os   使用   sp   for   on   

比较简单,直接上代码了。

import MySQLdb

def showResult(res):
        for i in res:
                print i

conn=MySQLdb.connect(host="localhost",user="root",passwd="123456",db="cloud",charset="utf8")
cursor = conn.cursor()
cursor.execute(select * from filelist)
res = cursor.fetchall()
showResult(res)

 

使用Python操作MySQL

标签:style   blog   ar   color   os   使用   sp   for   on   

原文地址:http://www.cnblogs.com/instant7/p/4156207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!