sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容、零配置、支援事務的sql資料庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 - 只要確保sqlite的二進位制檔案存在即可開始建立、連線和使用資料庫。如果您正在尋找乙個嵌入式資料庫專案或解決方案,sqlite是絕對值得考慮。
移植過程簡單,具體參考相關文件。
以下是簡單的教程:參考
1、 建立 sqlite 資料庫
現在你已經安裝了 sqlite 資料庫,接下來我們建立首個資料庫。在命令列視窗中輸入如下命令來建立乙個名為 test.db 的資料庫
sqlite3 test.db建立表:
sqlite>該錶包含乙個名為 id 的主鍵欄位和乙個名為 value 的文字字段。create table if not exists datacatlog(id varchar primary key ,content varchar
接下來往表裡中寫入一些資料:
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.mode column 將設定為列顯示模式,.header 將顯示列名。column
; sqlite> .header
on;
sqlite>
select
* from
test;
id value
----------- -------------
1 micheal
2 jenny
3 francis
4 kerk
修改表結構,增加列:
sqlite>建立檢視:alter
table
mytable
addcolumn
email text
notnull
''collate
nocase;;
sqlite>建立索引:create
view
nameview
asselect
* from
mytable;
sqlite>4. 一些有用的 sqlite 命令create
index
test_idx
onmytable(value);
顯示表結構:
sqlite> .獲取所有表和檢視:schema
[table
]
sqlite > .tables獲取指定表的索引列表:
sqlite > .indices [匯出資料庫到 sql 檔案:table
]
sqlite > .從 sql 檔案匯入資料庫:output
[filename ]
sqlite > .dump
sqlite > .
output
stdout
sqlite > .格式化輸出資料到 csv 格式:read
[filename ]
sqlite >.從 csv 檔案匯入資料到表中:output
[filename.csv ]
sqlite >.separator ,
sqlite >
select
* from
test;
sqlite >.
output
stdout
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 [結合自己的需求,寫了乙個簡單的demo,database
] < [filename ] */
sqlite3 mytable.db < backup.sql
功能描述:建立資料庫,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檢查連線...