SQLite快速入門指南

2022-09-21 01:15:06 字數 2941 閱讀 7450

1. 介紹

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

2. 安裝

sqlite on windows

進入 sql **頁面:

** windows 下的預編譯二進位制檔案包:

注意: 是 sqlite 的編譯版本號

將 zip 檔案解壓到你的磁碟,並將解壓後的目錄新增到系統的 path 變數中,以方便在命令列中執行 sqlite 命令。

可選: 如果你計畫發布基於 sqlite 資料庫的應用程式,你還需要**原始碼以便編譯和利用其 api

sqlite on linux

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

/* for debian or ubuntu /*

$ sudo apt-get install sqlite3 sqlite3-dev

/* for redhat, centos, or fedora/*

$ yum install sqlite3 sqlite3-dev

sqlite on ma程式設計客棧c os x

如果你正在使用 mac os 雪豹或者更新版本的系統,那麼系統上已經裝有 sqlite 了。

3. 建立首個 sqlite 資料庫

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

sqlite3 test.db

建立表:

sqlite> create table mytable(id integer primary key, value text);

該錶包含乙個名為 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 mytable;

1|micheal

2|jenny

3|francis

4|kerk

設定格式化查詢結果:

sqlite> .mode column;

sqlite> .header on;

sqlite> select * from mytable;

id value

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

1 micheal

2 jenny

3 francis

4 kerk

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

修改表結構,增加列:

sqlite> alter table mytable add column email text not null '' collate nocase;;

建立檢視:

sqlite> create view nameview as select * from mytable;

建立索引:

sqlite> create index test_idx on mytable(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程式設計客棧, valuwww.cppcns.come text );

sqlite >.import [filename.csv ] newtable

備份資料庫:

/* usage: sqlite3 [dat程式設計客棧abase] .dump > [filename] */

sqlite3 mytable.db .dump > backup.sql

恢復資料庫:

/* usage: sqlite3 [database ] < [filename ] */

sqlite3 mytable.db < backup.sql

本文標題: sqlite快速入門指南

本文位址:

GN快速入門指南

新增乙個新的構建引數 不知道發生了什麼事 你只需要從命令列執行gn。在depot tools目錄有乙個同名指令碼gn.py。這個指令碼將在包含當前目錄的源 樹中找到二進位制檔案並執行它。在gyp中,系統會為您生成debug和release建立目錄並相應地進行配置。gn不這樣做。相反,你可以使用你想要...

Mybatis快速入門指南

簡介 當下越來越多的企業專案架構中,在持久層部分,拋棄了hibernate框架,而選用mybatis框架取而代之,旨在更加深入細緻的控制和資料庫的互動。mybatis 本是apache的乙個開源專案ibatis,2010年這個專案由apache software foundation 遷移到了goo...

C STL 快速入門指南

c 的標頭檔案一般是沒有像c語言的 h 這樣的擴充套件字尾的,一般情況下c語言裡面的標頭檔案去掉 h 然後在前面加個 c 就可以繼續在c 檔案中使用c語言標頭檔案中的函式啦 比如 1 include 相當於c語言裡面的 include 2 include 相當於c語言裡面的 include 3 in...