sqlite快速入門指南
來源:易賢網(wǎng) 閱讀:95114 次 日期:2016-11-14 16:32:40
溫馨提示:易賢網(wǎng)小編為您整理了“sqlite快速入門指南”,方便廣大網(wǎng)友查閱!
這篇文章主要介紹了sqlite快速入門指南,作為開源的嵌入式數(shù)據(jù)庫,sqlite可以在不需要過多投入數(shù)據(jù)庫開發(fā)時提供十分輕便的服務,需要的朋友可以參考下
 

1. 介紹

sqlite 是一個開源的嵌入式關系數(shù)據(jù)庫,實現(xiàn)自包容、零配置、支持事務的sql數(shù)據(jù)庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他數(shù)據(jù)庫管理系統(tǒng)不同,sqlite 的安裝和運行非常簡單,在大多數(shù)情況下 - 只要確保sqlite的二進制文件存在即可開始創(chuàng)建、連接和使用數(shù)據(jù)庫。如果您正在尋找一個嵌入式數(shù)據(jù)庫項目或解決方案,sqlite是絕對值得考慮。

2. 安裝

sqlite on windows

    進入 sql 下載頁面:http://www.sqlite.org/download.html

    下載 windows 下的預編譯二進制文件包:

  •         sqlite-shell-win32-x86-<build#>.zip
  •         sqlite-dll-win32-x86-<build#>.zip

    注意: <build#> 是 sqlite 的編譯版本號

    將 zip 文件解壓到你的磁盤,并將解壓后的目錄添加到系統(tǒng)的 path 變量中,以方便在命令行中執(zhí)行 sqlite 命令。

    可選: 如果你計劃發(fā)布基于 sqlite 數(shù)據(jù)庫的應用程序,你還需要下載源碼以便編譯和利用其 api

  •         sqlite-amalgamation-<build#>.zip

sqlite on linux

在 多個 linux 發(fā)行版提供了方便的命令來獲取 sqlite:
 

/* for debian or ubuntu /*$ sudo apt-get install sqlite3 sqlite3-dev /* for redhat, centos, or fedora/*$ yum install sqlite3 sqlite3-dev

sqlite on mac os x

如果你正在使用 mac os 雪豹或者更新版本的系統(tǒng),那么系統(tǒng)上已經(jīng)裝有 sqlite 了。


3. 創(chuàng)建首個 sqlite 數(shù)據(jù)庫

現(xiàn)在你已經(jīng)安裝了 sqlite 數(shù)據(jù)庫,接下來我們創(chuàng)建首個數(shù)據(jù)庫。在命令行窗口中輸入如下命令來創(chuàng)建一個名為  test.db 的數(shù)據(jù)庫。
 

sqlite3 test.db
創(chuàng)建表:
 
sqlite> create table mytable(id integer primary key, value text);
該表包含一個名為 id 的主鍵字段和一個名為 value 的文本字段。

注意: 最少必須為新建的數(shù)據(jù)庫創(chuàng)建一個表或者視圖,這么才能將數(shù)據(jù)庫保存到磁盤中,否則數(shù)據(jù)庫不會被創(chuàng)建。

接下來往表里中寫入一些數(shù)據(jù):
 

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');
查詢數(shù)據(jù):
 
sqlite> select * from mytable;1|micheal2|jenny3|francis4|kerk
設置格式化查詢結果:
 
sqlite> .mode column;sqlite> .header on;
sqlite> select * from mytable;
id     value----------- -------------1
micheal2      jenny3      francis4      kerk
.mode column 將設置為列顯示模式,.header 將顯示列名。

修改表結構,增加列:
 

sqlite> alter table mytable add column email text not null '' collate nocase;;
創(chuàng)建視圖:
 
sqlite> create view nameview as select * from mytable;
創(chuàng)建索引:
 
sqlite> create index test_idx on mytable(value);

4. 一些有用的 sqlite 命令

顯示表結構:

sqlite> .schema [table]

獲取所有表和視圖:

sqlite > .tables 

獲取指定表的索引列表:

sqlite > .indices [table ]

導出數(shù)據(jù)庫到 sql 文件:

sqlite > .output [filename ] sqlite > .dump sqlite > .output stdout

從 sql 文件導入數(shù)據(jù)庫:

sqlite > .read [filename ]

格式化輸出數(shù)據(jù)到 csv 格式:

sqlite >.output [filename.csv ] sqlite >.separator , 
sqlite > select * from test; sqlite >.output stdout

從 csv 文件導入數(shù)據(jù)到表中:

sqlite >create table newtable ( id integer primary key, value text );
 sqlite >.import [filename.csv ] newtable 

備份數(shù)據(jù)庫:

/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql

恢復數(shù)據(jù)庫:

/* usage: sqlite3 [database ] < [filename ] */
 sqlite3 mytable.db < backup.sql

 

更多信息請查看技術文章
易賢網(wǎng)手機網(wǎng)站地址:sqlite快速入門指南

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)