python 中使用sqlite3資料庫

2021-06-21 22:46:15 字數 4297 閱讀 1626

sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容、零配置、支援事務的sql資料庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 - 只要確保sqlite的二進位制檔案存在即可開始建立、連線和使用資料庫。如果您正在尋找乙個嵌入式資料庫專案或解決方案,sqlite是絕對值得考慮。

移植過程簡單,具體參考相關文件。

以下是簡單的教程:參考

1、 建立 sqlite 資料庫

現在你已經安裝了 sqlite 資料庫,接下來我們建立首個資料庫。在命令列視窗中輸入如下命令來建立乙個名為 test.db 的資料庫

sqlite3 test.db 

建立表:

sqlite> 

create table  if not exists datacatlog(id varchar primary key ,content varchar 

該錶包含乙個名為 id 的主鍵欄位和乙個名為 value 的文字字段。

接下來往表裡中寫入一些資料:

sqlite> 

insert

into

mytable(id, value) 

values

(1, 

'micheal'

);  

sqlite> 

insert

into

mytable(id, value) 

values

(2, 

'jenny'

);  

sqlite> 

insert

into

mytable(value) 

values

('francis'

);  

sqlite> 

insert

into

mytable(value) 

values

('kerk'

);

查詢資料:

sqlite> 

select

* from

test;  

1|micheal  

2|jenny  

3|francis  

4|kerk 

設定格式化查詢結果:

sqlite> .mode 

column

;  sqlite> .header 

on;  

sqlite> 

select

* from

test;  

id          value  

----------- -------------

1           micheal  

2           jenny  

3           francis  

4           kerk 

.mode column 將設定為列顯示模式,.header 將顯示列名。

修改表結構,增加列:

sqlite> 

alter

table

mytable 

addcolumn

email text 

notnull

''collate

nocase;; 

建立檢視:

sqlite> 

create

view

nameview 

asselect

* from

mytable; 

建立索引:

sqlite> 

create

index

test_idx 

onmytable(value); 

4. 一些有用的 sqlite 命令

顯示表結構:

sqlite> .

schema

[table

]

獲取所有表和檢視:

sqlite > .tables 

獲取指定表的索引列表:

sqlite > .indices [

table

]

匯出資料庫到 sql 檔案:

sqlite > .

output

[filename ]  

sqlite > .dump  

sqlite > .

output

stdout 

從 sql 檔案匯入資料庫:

sqlite > .

read

[filename ] 

格式化輸出資料到 csv 格式:

sqlite >.

output

[filename.csv ]  

sqlite >.separator ,  

sqlite > 

select

* from

test;  

sqlite >.

output

stdout 

從 csv 檔案匯入資料到表中:

sqlite >

create

table

newtable ( id 

integer

primary

key, value text );  

sqlite >.import [filename.csv ] newtable 

備份資料庫:

/* usage: sqlite3 [

database

] .dump > [filename] */  

sqlite3 mytable.db .dump > backup.sql 

恢復資料庫:

/* usage: sqlite3 [

database

] < [filename ] */  

sqlite3 mytable.db < backup.sql 

結合自己的需求,寫了乙個簡單的demo,

功能描述:建立資料庫,insert函式每次插入一條資料。deldata每次從資料庫中取出一條資料並刪除之。

import sqlite3

class dbmanage():

def insert(self, key, value):

conn = sqlite3.connect('test.db')

cu = conn.cursor()

cu.execute('create table if not exists datacatlog(id varchar primary key ,content varchar )')

cu.execute('insert into datacatlog values (?,?)', (key, value))

cu.execute('select * from datacatlog')

print cu.fetchall()

conn.commit()

conn.close()

def deldata(self):

conn = sqlite3.connect('test.db')

cu = conn.cursor()

cu.execute('create table if not exists datacatlog(id varchar primary key ,content varchar )')

cu.execute('select * from datacatlog')

allrecords = cu.fetchall()

print "before del:", allrecords

for record in allrecords:

#record = cu.fetchone()[0]

cu.execute("delete from datacatlog where id = ?", (record[0],))

cu.execute('select * from datacatlog')

print "after del:", cu.fetchall()

conn.commit()

#conn.close()

conn.close()

python中使用sqlite資料庫

使用sqlite python就內建了sqlite3,所以,在python中使用sqlite,不需要安裝任何東西,直接使用。sqlite支援常見的標準sql語句以及幾種常見的資料型別。下面是乙個sqlite的增刪改查的例子 匯入sqlite驅動 import sqlite3 連線到sqlite資料庫...

在c 中使用SQlite

1.生成 lib 檔案 第一步 找到lib.exe所在目錄 一般都在x program files microsoft visual studio vc98 bin下,在 執行 中輸入cmd,然後切換到該目錄下 第二步 使用lib命令生成.lib檔案 很多網頁上都介紹,使用lib def sqlit...

在QT中使用sqlite

sqlite sql 是一款開源輕量級的資料庫軟體,不需要server,可以整合在其他軟體中,非常適合嵌入式系統。qt5以上版本可以直接使用sqlite qt自帶驅動 引入sql模組 在qt專案檔案 pro檔案 中,加入sql模組 qt sql include include include檢查連線...