首页 > 代码库 > python操作数据库
python操作数据库
安装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操作数据库
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。