python sqlite中通过字段名获取查询结果

Posted roucheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python sqlite中通过字段名获取查询结果相关的知识,希望对你有一定的参考价值。

在连sqlite数据库时,用fetchall()查询结果,是用row[0],row[1]这样的方式来打印每列的结果

但是我想用row[“字段名”]方式查询怎么办?

import sqlite3

con = sqlite3.connect("mydb")
con.row_factory = sqlite3.Row

cur = con.cursor()
cur.execute("select name_last, age from people")
for row in cur:
    assert row[0] == row["name_last"]
    assert row["name_last"] == row["nAmE_lAsT"]
    assert row[1] == row["age"]
    assert row[1] == row["AgE"]
#何问起 hovertree.com

 

mysqldb的实现方法是: 
conn=MySQLdb.connect(..., cursorclass=MySQLdb.cursors.DictCursor) 
或者用MySQLdb.cursors.SSDictCursor。前者数据存储在客户端,后者数据存储在服务器。

推荐:http://www.cnblogs.com/roucheng/p/pythonstring.html

以上是关于python sqlite中通过字段名获取查询结果的主要内容,如果未能解决你的问题,请参考以下文章

oracle数据库中通过列名获取约束名

如何从python中的SQLite查询中获取单个结果?

MyBatis高级

在xcode中通过sqlite3检查存在

python3 pymysql查询结果包含字段名

python3 pymysql查询结果包含字段名