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

python oracle 查询返回字典

时间:2018-05-17 18:21:24      阅读:1911      评论:0      收藏:0      [点我收藏+]

标签:code   ons   dict   sim   blank   color   cut   arc   cti   

from: https://sourceforge.net/p/cx-oracle/mailman/message/27145597/

I‘d do it with a "row factory", here are two examples, one which builds a dictionary, the other one builds a "named tuple" and is very similar to sqlite3.Row.

def makeDictFactory(cursor):
    columnNames = [d[0] for d in cursor.description]
    def createRow(*args):
        return dict(zip(columnNames, args))
    return createRow

def makeNamedTupleFactory(cursor):
    columnNames = [d[0].lower() for d in cursor.description]
    import collections
    Row = collections.namedtuple(Row, columnNames)
    return Row
Then, just after the cs.execute() call, you can add:
cs.rowfactory = makeDictFactory(cs)
# or
cs.rowfactory = makeNamedTupleFactory(cs)

-- 
#Amaury Forgeot d‘Arc

python oracle 查询返回字典

标签:code   ons   dict   sim   blank   color   cut   arc   cti   

原文地址:https://www.cnblogs.com/buxizhizhoum/p/9052268.html

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