文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Python 2.6连接mysql

Python 2.6连接mysql

时间:2010-05-31  来源:crispgm

突然想起了世界上最优雅的语言python

(why 最优雅,因为强制缩进,看起来的确比较好看)

1,先装MySQLdb库,官方下载的不行,搜到这个

http://www.codegood.com/archives/4

2,遇到__init__.py什么什么的错误,

神级帖子save me http://www.phpfans.net/article/htmls/200907/MjE1MjQ5.html

找到MySQLdb文件夹的中__init__.py,注释掉from sets import ImmutableSet
class DBAPISet(ImmutableSet):添加class DBAPISet(frozenset):;找到converters.py注释掉from sets import BaseSet, Set。然后修改第45行和129行中的Set为set。

3,开始读取book数据库

import MySQLdb
conn=MySQLdb.connect(host="localhost",user="root",passwd="744411",db="book")
cursor=conn.cursor()
cursor.execute("select * from book")
res=cursor.fetchall()
print res
cursor.close()
conn.close()



相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载