1. 介紹
sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容、零配置、支援事務的sql資料庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 - 只要確保sqlite的二進位制檔案存在即可開始建立、連線和使用資料庫。如果您正在尋找乙個嵌入式資料庫專案或解決方案,sqlite是絕對值得考慮。
2. 安裝
sqlite on windows
sqlite-shell-win32-x86-.zip
sqlite-dll-win32-x86-.zip
注意: 是 sqlite 的編譯版本號
將 zip 檔案解壓到你的磁碟,並將解壓後的目錄新增到系統的 path 變數中,以方便在命令列中執行 sqlite 命令。
sqlite-amalgamation-.zip
sqlite on linux
在 多個 linux 發行版提供了方便的命令來獲取 sqlite:
/*sqlite on mac os xfordebian
orubuntu /*
$ sudo apt-get install sqlite3 sqlite3-dev
/* for
redhat, centos,
orfedora/*
$ yum install sqlite3 sqlite3-dev
如果你正在使用 mac os 雪豹或者更新版本的系統,那麼系統上已經裝有 sqlite 了。
3. 建立首個 sqlite 資料庫
現在你已經安裝了 sqlite 資料庫,接下來我們建立首個資料庫。在命令列視窗中輸入如下命令來建立乙個名為 test.db 的資料庫。
sqlite3 test.db建立表:
sqlite>該錶包含乙個名為 id 的主鍵欄位和乙個名為 value 的文字字段。create
table
mytable(id
integer
primary
key, value text);
2 columns were created.
注意: 最少必須為新建的資料庫建立乙個表或者檢視,這麼才能將資料庫儲存到磁碟中,否則資料庫不會被建立。
接下來往表裡中寫入一些資料:
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 [database
] < [filename ] */
sqlite3 mytable.db < backup.sql
乙個小時內學習SQLite資料庫
2012 05 11 10 24 紅薯 oschina 字型大小 t t sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容 零配置 支援事務的sql資料庫引擎。其特點是高度便攜 使用方便 結構緊湊 高效 可靠。與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 只要...
乙個小時內學習SQLite資料庫
sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容 零配置 支援事務的sql資料庫引擎。其特點是高度便攜 使用方便 結構緊湊 高效 可靠。與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 只要確保sqlite的二進位制檔案存在即可開始建立 連線和使用資料庫。如果您正...
乙個小時內學習SQLite資料庫
from sqlite 是乙個開源的嵌入式關聯式資料庫,實現自包容 零配置 支援事務的sql資料庫引擎。其特點是高度便攜 使用方便 結構緊湊 高效 可靠。與其他資料庫管理系統不同,sqlite 的安裝和執行非常簡單,在大多數情況下 只要確保sqlite的二進位制檔案存在即可開始建立 連線和使用資料庫...