2006年09月11日 星期一 15:49
我现在遇到一个问题 : 在Python Database API Specification v2.0<http://www.python.org/dev/peps/pep-0249/>中规定数据库fetchmany和fetchall返回的数据查询结果是a list of tuples,就是数据库每一行组成一个元组,然后这些行再组成一个列表。 而我所需要的是,数据库每个列作为一个列表返回,这样我可以用matplot来做图表。 而这样的话就需要写个转换函数了。在数据记录比较多的时候效率可能较低。 我想问的是:有没有什么内置的,或者高效的方法 使数据库查询的结果为 每个列作为一个列表的返回结果。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20060911/e3405028/attachment.html
2006年09月11日 星期一 17:33
zip( *cursor.fetchmany ) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20060911/e31e4067/attachment.html
2006年09月12日 星期二 13:10
> > zip( *cursor.fetchmany )这个是什么意思? > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20060912/1f959b69/attachment.html
2006年09月12日 星期二 13:32
On 9/12/06, ooox lee <leeooox在gmail.com> wrote: > > zip( *cursor.fetchmany )这个是什么意思? > > > > http://docs.python.org/lib/built-in-funcs.html#l2h-79 先看看内置函数列表吧 -- simple is good http://brucewang.net -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20060912/a4975e4e/attachment.htm
2006年09月12日 星期二 13:35
> > zip( *cursor.fetchmany )这个是什么意思? > sorry , 是 zip( *cursor.fetchmany(...) ) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20060912/d6d02ebc/attachment.html
Zeuux © 2025
京ICP备05028076号