您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Python中sqlite3查詢操作過(guò)程的示例分析,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
記錄查詢操作及獲取查詢結(jié)果列字段的方法
1.sqlite3 中獲取所有表名及各表字段名的操作方法
SQLite 數(shù)據(jù)庫(kù)中有一個(gè)特殊的表叫 sqlite_master,sqlite_master 的結(jié)構(gòu)如下:
CREATE TABLE sqlite_master ( type TEXT, name TEXT, tbl_name TEXT, rootpage INTEGER, sql TEXT );
可以通過(guò)查詢這個(gè)表來(lái)獲取數(shù)據(jù)庫(kù)中所有表的信息
SELECT * FROM sqlite_master WHERE type='table';
查詢某張表的所有字段
PRAGMA table_info(表名); 示例: PRAGMA table_info(sqlite_sequence);
2. python 操作sqlite3,獲取sql 查詢結(jié)果及對(duì)應(yīng)查詢結(jié)果的列名的方法
class DBOperate(object): """ 數(shù)據(jù)庫(kù)操作類 """ def __init__(self, db_file_path): # 連接 sqlite db # 關(guān)于commit(),如果isolation_level隔離級(jí)別默認(rèn),那么每次對(duì)數(shù)據(jù)庫(kù)的操作,都需要使用該命令, # 設(shè)置 isolation_level=None,變?yōu)樽詣?dòng)提交模式 self._db_file_path = db_file_path self.conn = sqlite3.connect(self._db_file_path, check_same_thread=False, isolation_level=None, timeout=1000) # 創(chuàng)建游標(biāo) self.cur = self.conn.cursor() def queryall(self, sql): """ 查詢所有的數(shù)據(jù)及對(duì)應(yīng)的列名 :param sql: :return: """ self.cur.execute(sql) # TODO 獲取查詢結(jié)果的列名 columns_tuple = self.cur.description # columns_tuple示例: (('TACHE_NAME', None, None, None, None, None, None), ('avgtime', None, None, None, None, None, None), ('DATE', None, None, None, None, None, None), ('ANALYSIS_TIME', None, None, None, None, None, None)) columns_list = [field_tuple[0] for field_tuple in columns_tuple] # TODO 獲取查詢結(jié)果 query_result = self.cur.fetchall() self.cur.close() return query_result, columns_list def close(self): """ 關(guān)閉數(shù)據(jù)庫(kù)連接 :return: """ if self.cur is not None: self.cur.close() if self.conn is not None: self.conn.close()
關(guān)于“Python中sqlite3查詢操作過(guò)程的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。