程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python SQLite3讀取數據庫中的文件並獲取列名/字段名

編輯:Python

文件列表:

mytest.db

id timestamp
1 2022-6-17 17:59
2 2022-6-17 17:59
3 2022-6-17 17:59
4 2022-6-17 17:59
5 2022-6-17 17:59
6 2022-6-19 17:38
7 2022-6-19 17:38
8 2022-6-19 17:38
9 2022-6-19 17:38

SQLite3Test.py

# coding:utf-8
# @Time:2022-06-20 12:28
# @Author:Kevin
# @Software:PyCharm
import sqlite3 as sl
# 獲取列名/字段名
db = sl.connect('mytest.db')
cur = db.cursor()
cur.execute("select * from table_data")
col_name_list = [tuple[0] for tuple in cur.description]
print(col_name_list)
# cur.execute("PRAGMA table_info(table_data)")
# print(cur.fetchall())


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved