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

python操作数据库

时间:2017-03-30 23:01:12      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:cursor   rom   关闭   获取   res   连接   for   target   tar   

安装MySQLdb,请访问 http://sourceforge.net/projects/mysql-python


我的是2.7版本的MySQL-python-1.2.4b4.win32-py2.7

直接运行就能安装了

 

import MySQLdb

#连接数据库
db=MySQLdb.connect("localhost","root","","test")

#获取坐标游
cursor=db.cursor()

sql="select * from employee     where INCOME > ‘%d‘" %(1000)

try:
    cursor.execute(sql)
    #获取所有记录
    results=cursor.fetchall()
    for row in results:
        fname=row[0]
        lname=row[1]
        age=row[2]
        sex=row[3]
        income=row[4]

    #打印结果
        print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" %               (fname,lname,age,sex,income)
except:
    print "Error:unable to fetch data"

#关闭数据库连接
db.close()

 

python操作数据库

标签:cursor   rom   关闭   获取   res   连接   for   target   tar   

原文地址:http://www.cnblogs.com/anxiaoyu/p/6647201.html

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