這篇文章主要介紹了Python讀取sqlite資料庫檔案的方法,結合實例形式分析了Python引入sqlite3模組操作sqlite資料庫的讀取、SQL命令執行等相關操作技巧,需要的朋友可以參考下
本文實例講述了Python讀取sqlite資料庫檔案的方法。分享給大家供大家參考,如下:
import sqlite3
這是Python內建的,不需要pip install 套件
資料庫裡面有很多張表
要操作資料庫首先要連接conect資料庫
mydb=sqlite3.connect("alfw.sqlite")
然後建立遊標cursor來執行executeSQL語句
cursor=mydb.cursor()
例如我想看這個資料庫的幾張表的名字是什麼
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';") Tables=cursor.fetchall() print(Tables)
複製程式碼 程式碼如下:
>>>[('Faces',), ('sqlite_sequence',), ('FacePose',), ('FaceImages',), ('Databases',), ('FaceMetaData',), ('sqlite_stat1',), ('FaceRect',), ('AnnotationType',), ('FaceEllipse',), ('NearDuplicates',), ('FeatureCoords',), ('FeatureCoordTypes',)]
這個可以透過sqlite_master是表格結構來理解
CREATE TABLE sqlite_master ( type TEXT, name TEXT, tbl_name TEXT, rootpage INTEGER, sql TEXT );
如果要查某一張表Faces的表頭結構
cursor.execute("PRAGMA table_info(Faces)") print cursor.fetchall()
複製程式碼 程式碼如下:
>>>[(0, 'face_id', 'INTEGER', 0, None, 1), (1, 'file_id', 'TEXT', 1, None, 0), (2, 'db_id', 'TEXT', 1, None, 0)]
以上是Python如何讀取sqlite資料庫的檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!