SQLite學習手冊(目錄)

idaretobe發表於2015-01-12

在實際的應用中,SQLite作為目前最為流行的開源嵌入式關係型資料庫,在系統的架構設計中正在扮演著越來越為重要的角色。和很多其它嵌入式NoSQL資料庫不同的是,SQLite支援很多關係型資料庫的基本特徵,這在資料移植、程式演示等應用中有著不可替代的優勢。從官方文件中我們可以獲悉到,SQLite支援的資料量和執行效率都是非常驕人的,因此在海量資料的解決方案中,SQLite可以作為資料預計算的橋頭堡,從而顯著減少儲存在關係型資料庫伺服器中的資料數量,最終提高系統的查詢效率和執行期效率,同時也可以顯著的降低資料備份的磁碟開銷。這裡提供了該系列博文的目錄,以方便網友和我個人的學習與參閱。
      Finally, if you are interseting in my series blogs, please pay more attention on my following ones, such as Redis, MongoDB, Lua and PostgreSQL. Thank you for your reading and comments, that will give me more effective encouragement and stimulate me to move ahead with stable and continuous. 

SQLite學習手冊(開篇)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/09/2317603.html
一、簡介
二、SQLite的主要優點
三、和RDBMS相比SQLite的一些劣勢
四、個性化特徵

SQLite學習手冊(C/C++介面簡介)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/13/2321386.html
一、概述
二、核心物件和介面
三、引數繫結

SQLite學習手冊(資料表和檢視)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/13/2321668.html
一、建立資料表
二、表的修改
三、表的刪除
四、建立檢視
五、刪除檢視

SQLite學習手冊(內建函式)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/13/2322027.html
一、聚合函式
二、核心函式
三、日期和時間函式

SQLite學習手冊(索引和資料分析/清理)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/14/2322335.html
一、建立索引
二、刪除索引
三、重建索引
四、資料分析
五、資料清理

SQLite學習手冊(資料庫和事物)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/14/2322575.html
一、Attach資料庫
二、Detach資料庫
三、事物

SQLite學習手冊(表示式)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/16/2323907.html
一、常用表示式
二、條件表示式
三、轉換表示式

SQLite學習手冊(資料型別)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/18/2325258.html
一、儲存種類和資料型別
二、型別親緣性
三、比較表示式
四、操作符

SQLite學習手冊(命令列工具)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/18/2325981.html

SQLite學習手冊(線上備份)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/19/2326309.html
一、常用備份
二、線上備份APIs簡介
三、高階應用技巧

SQLite學習手冊(記憶體資料庫)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/20/2328348.html
一、記憶體資料庫
二、臨時資料庫

SQLite學習手冊(臨時檔案)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/21/2328483.html
一、簡介
二、具體說明
三、相關的編譯時引數和指令
四、其它優化策略

SQLite學習手冊(鎖和併發控制)
http://www.cnblogs.com/stephen-liu74/archive/2012/01/22/2328753.html
一、概述
二、檔案鎖
三、回滾日誌
四、資料寫入
五、SQL級別的事物控制

SQLite學習手冊(例項程式碼<一>)
http://www.cnblogs.com/stephen-liu74/archive/2012/02/07/2340780.html
一、獲取表的Schema資訊
二、常規資料插入

SQLite學習手冊(例項程式碼<二>)
http://www.cnblogs.com/stephen-liu74/archive/2012/02/07/2341480.html
三、高效的批量資料插入
四、資料查詢

如果您覺得這個系列的部落格可以讓您有所收穫,請保持持續的關注。
如果您發現部落格中有明顯的紕漏,歡迎指正。
如果您有意進行技術上的交流,可以通過郵件共同探討(stephenland74@hotmail.com)。
如果您有更好的建議或更好的實現方式,敬請賜教。
如果您已經是我的關注者,希望隨後釋出的Redis系列不會讓您失望。

相關文章