关于最新的torndb.py 可以从https://github.com/bdarnell/torndb/blob/master/torndb.py下载。torndb代码结构很是简明清晰,见下图:
图1,torndb代码结构
首先连接到数据库:
import torndb db=torndb.Connection('localhost','talk',user='root',password='pass')
cre='create table blog(id int,content text)' db.execute(cre) string='wawuee' exe='insert into blog(id,content)values(%d,"%s")'%(1,string) db.execute(exe)
>>> a=db.get('select * from blog where id=1') >>> a {'content': 'wawuee', 'id': 1}
>>> a=db.query('select * from blog') >>> a [{'id': 250, 'content': 'wahaha'}, {'id': 1, 'content': 'wawuee'}]
总结下,torndb对MySQLdb封装后,query,get返回是list,dict这些,非常方便,可以直接拿来用,这是TA的优点,而且是默认自动commit的,不用MySQLdb的手动commit,用起来很是简洁。如果有需要的话,我可以写个torndb和MySQLdb的使用对比,都是python3.x下的哈~
转载请注明:转自 http://blog.csdn.net/littlethunder/article/details/8918045