Posted in Python onJune 21, 2017
本文实例讲述了Python获取SQLite查询结果表列名的方法。分享给大家供大家参考,具体如下:
获得查询结果表的列名:
db = sqlite.connect('data.db') cur = db.cursor() cur.execute("select * from table") col_name_list = [tuple[0] for tuple in cur.description] print col_name_list
获得所有列名:
cur.execute("PRAGMA table_info(table)") print cur.fetchall()
希望本文所述对大家Python程序设计有所帮助。
Python获取SQLite查询结果表列名的方法
- Author -
CherylNatsu声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@