我在python 2.5中使用sqlite3。我创建了一个如下所示的表:
原文链接:https://www.f2er.com/sqlite/198049.htmlcreate table votes ( bill text,senator_id text,vote text)
我正在用这样的方式访问它:
v_cur.execute("select * from votes") row = v_cur.fetchone() bill = row[0] senator_id = row[1] vote = row[2]
我想要做的是使用fetchone(或其他方法)返回字典而不是列表,以便我可以通过名称而不是位置来引用该字段。例如:
bill = row['bill'] senator_id = row['senator_id'] vote = row['vote']
我知道你可以用MysqL这样做,但有谁知道如何使用sqlite?
谢谢!!!