如何在使用 psycopg2.extras.RealDictCursor 时保留列顺序
dict_cur = conn.cursor(cursor_factory=psycopg2.extras.RealDictCursor)
dict_cur.execute("SELECT column1, column2, column3 FROM mytable")
result = dict_cur.fetchall()
print result[0]
>>> {'column2':10, 'column1':12, 'column3':42}
如何在不首先解析执行的 SQL 的情况下保留列顺序?返回列表时,它与普通光标配合得很好,但我需要访问字典键,因此需要使用 RealDictCursor。
编辑:嗯,我实际上不能。游标对象的 description 属性应用于获取列名称。
dict_cur = conn.cursor(cursor_factory=psycopg2.extras.RealDictCursor)
dict_cur.execute("SELECT column1, column2, column3 FROM mytable")
result = dict_cur.fetchall()
print result[0]
>>> {'column2':10, 'column1':12, 'column3':42}
How could I preserve column ordering without parsing executed SQL first? It works well with normal cursor when list is returned, but I need access to dictionary keys and therefore need to use RealDictCursor.
EDIT: Well, I actually can't. description attribute of the cursor object should be used for getting column names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
psycopg2.extras.NamedTupleCursor
然后使用namedtuple_obj._asdict( )
将其转换为OrderedDict
。注意:为了“开箱即用”地获得此功能,我们需要 Python 版本 >= 2.7。
You can use
psycopg2.extras.NamedTupleCursor
and then usenamedtuple_obj._asdict()
to convert that to anOrderedDict
.Note: In ordered to get this functionality "out of the box" we need to have Python version >= 2.7.
我没有这个“
extras
”包,但通常游标应该有一个名为description
的属性,它是一个元组,其中按顺序包含所有列以及一些附加信息例如字段类型等。在 python shell 中尝试“
print dict_cur.description
”,看看会得到什么。编辑:没关系。我没有读过你的“编辑”......
I don't have this "
extras
" package, but normally a cursor should have a property calleddescription
which is a tuple containing all the columns in order along with some additional information like field type etc.Try out "
print dict_cur.description
" in a python shell and see what you get.EDIT: never mind. I did not read your "EDIT"...