免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 9426 | 回复: 11
打印 上一主题 下一主题

python查询sqlite返回结果数组可以用字段名做索引吗? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-02 12:04 |只看该作者 |倒序浏览
python 操作sqlite

import sqlite3 as sqlite

def runTest():
    conn = sqlite.connect('test.db')
    cursor = conn.cursor()

    cursor.execute("select uid, username, userpwd from member")
    records = cursor.fetchall()
   
    for data in records:
        print(data[0])    #这个地方是输出uid字段对应的值,有没有一个关联方法(就是用字段名做索引,而不是用数字索引),数字索引太麻烦了,要是能用data['uid']这种就好了,有这种方法吗?

    cursor.close()
    conn.close()

if __name__ == '__main__':
    runTest()

论坛徽章:
0
2 [报告]
发表于 2009-06-02 12:27 |只看该作者
看看我写的这篇文章,试试看
http://bbs3.chinaunix.net/thread-1462846-1-2.html

论坛徽章:
0
3 [报告]
发表于 2009-06-02 14:46 |只看该作者
你说的是Mysql,不是sqlite

论坛徽章:
0
4 [报告]
发表于 2009-06-02 16:08 |只看该作者

回复 #3 xiaochong0302 的帖子

不好意思,只能用土办法了,根据cursor.description获取字段信息,然后拼成哈希返回了

下面是代码片段:
records = cursor.fetchall()
field = [i[0] for i in cursor.description]
records2 = [dict(zip(field,i)) for i in records]
print records2

论坛徽章:
0
5 [报告]
发表于 2009-06-02 16:11 |只看该作者
忘记加点注释了
[i[0] for i in cursor.description] 这个返回字段名的列表
[dict(zip(field,i)) for i in records] 这个就是根据字段名跟值,拼成dict

论坛徽章:
0
6 [报告]
发表于 2009-06-02 16:21 |只看该作者
还可以一行搞定
records2 = [dict(zip([j[0] for j in cursor.description], i)) for i in records]
print records2

论坛徽章:
0
7 [报告]
发表于 2009-06-02 23:18 |只看该作者
谢谢您的回复,您的方法已领会,不过也麻烦,呵呵。

论坛徽章:
0
8 [报告]
发表于 2009-06-03 00:37 |只看该作者
What about it ?

f1 =  lambda key: hash('PJIYzp7L1j' + str(key)) % 5
f2 =  lambda key: hash('7l5AaJ3VI6' + str(key)) % 5
G = [ 0, 0, 1, 1, 0, ]

def kh(key):
    return (G[ f1(key) ] + G[ f2(key) ] ) % 5


print kh('uid')
print kh('usrname')
print kh('userpwd')

#data[kh('uid')]

论坛徽章:
0
9 [报告]
发表于 2009-06-03 08:03 |只看该作者

回复 #7 xiaochong0302 的帖子

只能折中下了,sqlite3模块还是稍微单薄了点。
其实按照数字索引来使用也未尝不好,我记得mysql还可以修改cursor.py部分代码也可以实现

论坛徽章:
0
10 [报告]
发表于 2009-06-03 09:48 |只看该作者
可以通过修改 Connection 的 row_factory 来实现。这个在pysqlite的文档中,有详细说明。

http://initd.org/pub/software/py ... instead-of-by-index

[ 本帖最后由 OneZ 于 2009-6-3 11:52 编辑 ]

评分

参与人数 1可用积分 +4 收起 理由
xiaoyu9805119 + 4 我很赞同

查看全部评分

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP