一個小時內學習SQLite資料庫
SQLite 是一個開源的嵌入式關聯式資料庫,實現自包容、零配置、支援事務的SQL資料庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,SQLite 的安裝和執行非常簡單,在大多數情況下 - 只要確保SQLite的二進位制檔案存在即可開始建立、連線和使用資料庫。如果您正在尋找一個嵌入式資料庫專案或解決方案,SQLite是絕對值得考慮。
[@more@]1. 介紹
SQLite 是一個開源的嵌入式關聯式資料庫,實現自包容、零配置、支援事務的SQL資料庫引擎。 其特點是高度便攜、使用方便、結構緊湊、高效、可靠。 與其他資料庫管理系統不同,SQLite 的安裝和執行非常簡單,在大多數情況下 - 只要確保SQLite的二進位制檔案存在即可開始建立、連線和使用資料庫。如果您正在尋找一個嵌入式資料庫專案或解決方案,SQLite是絕對值得考慮。
2. 安裝
SQLite on Windows
1)進入 SQL 下載頁面:
2)下載 Windows 下的預編譯二進位制檔案包:
sqlite-shell-win32-x86- sqlite-dll-win32-x86- |
注意:
將 zip 檔案解壓到你的磁碟,並將解壓後的目錄新增到系統的 PATH 變數中,以方便在命令列中執行 sqlite 命令。
可選: 如果你計劃釋出基於 sqlite 資料庫的應用程式,你還需要下載原始碼以便編譯和利用其 API
sqlite-amalgamation- |
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 Mac OS X
如果你正在使用 Mac OS 雪豹或者更新版本的系統,那麼系統上已經裝有 SQLite 了。
3. 建立首個 SQLite 資料庫
現在你已經安裝了 SQLite 資料庫,接下來我們建立首個資料庫。在命令列視窗中輸入如下命令來建立一個名為 test.db 的資料庫。
- sqlite3 test.db
建立表:
- sqlite> create table mytable(id integer primary key, value text);
- 2 columns were created.
該表包含一個名為 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 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, 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
原文連結:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/66009/viewspace-1059722/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SQLite資料庫學習小結——Frameworks層實現SQLite資料庫Framework
- SQLite資料庫學習小結——native層實現SQLite資料庫
- 資料庫基礎學習-計劃內容 For 小樣兒資料庫
- 1 小時學會 MySQL 資料庫MySql資料庫
- 資料庫學習:透過作業定時同步兩個資料庫(轉)資料庫
- 推薦一個Oracle資料庫學習網站Oracle資料庫學習網站
- Python中內建資料庫!SQLite使用指南! ⛵Python資料庫SQLite
- SQLite學習筆記(一)SQLite筆記
- sqlite 資料庫的資料字典SQLite資料庫
- sqlite操作--- oracle資料庫中的資料導進sqliteSQLiteOracle資料庫
- 【Java】操作Sqlite資料庫JavaSQLite資料庫
- SQLite資料庫管理器:SQLPro for SQLite for MacSQLite資料庫Mac
- sqlite 學習SQLite
- SQLite學習SQLite
- 同一個server內將資料從A資料庫導到B資料庫Server資料庫
- android sqlite資料庫 新增資料AndroidSQLite資料庫
- 資料庫學習資料庫
- SQLPro for SQLite Mac(SQLite資料庫管理工具)SQLiteMac資料庫
- 高效操控SQLite資料庫,盡在SQLPro for SQLite for MacSQLite資料庫Mac
- TimesTen學習(二)連線建立第一個資料庫資料庫
- Android資料庫高手祕籍(一):SQLite命令Android資料庫SQLite
- Python操作SQLite資料庫PythonSQLite資料庫
- Python 操作 SQLite 資料庫PythonSQLite資料庫
- sqlite3資料庫操作SQLite資料庫
- [轉] 一個小時學會GitGit
- IOS資料儲存之Sqlite資料庫iOSSQLite資料庫
- 使用sqlite3 模組操作sqlite3資料庫SQLite資料庫
- python用sqlite3模組操作sqlite資料庫PythonSQLite資料庫
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- Sql Server資料庫資料匯入到SQLite資料庫中Server資料庫SQLite
- 跟小博老師一起學習資料庫 ——ACID規則資料庫
- 【DB 2學習】檢視一個資料庫的配置檔案資料庫
- 資料庫學習(一)——select語句資料庫
- Laravel資料庫測試的另一種方案-SQLiteLaravel資料庫SQLite
- 資料庫的定時備份(小庫、資料泵工具)資料庫
- 學習MongoDB資料庫MongoDB資料庫
- 資料庫期末複習小結資料庫
- php sqlite 建立本地資料庫PHPSQLite資料庫