SQLite使用入門

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   io   使用   ar   檔案   

什麼是SQLite

      SQLite是一款非常輕量級的關聯式資料庫系統,支援多數SQL92標準。SQLite在使用前不需要安裝設定,不需要進程來啟動、停止或配置,而其他大多數SQL資料庫引擎是作為一個單獨的伺服器處理序,被程式使用某種內部進程通訊(典型的是TCP/IP),完成發送請求到伺服器和接收查詢結果的工作,SQLite不採用這種工作方式。使用SQLite時,訪問資料庫的程式直接從磁碟上的資料庫檔案讀寫,沒有中間的伺服器處理序。使用SQLite一般只需要帶上一個dll,就可以使用它的全部功能。

      SQLite的主要應用情境有作為手機應用的資料庫以及小型案頭軟體的資料庫。

安裝使用SQLite

  sqlite的官方為http://www.sqlite.org/download.html,上面提供了多種版本的sqlite,我選擇下載名稱為sqlite-shell-win32-x86-3080500.zip 的版本。下載後就直接解壓到磁碟上,可以看到解壓後只有sqlite3.exe這個檔案。

      接下來需要將sqlite加入到path環境變數中(加入環境變數是為了更加方便地使用sqlite),右鍵我的電腦-屬性-進階系統設定-環境變數,在系統變數中找到Path,將解壓的檔案夾目錄加入到後面(注意是檔案夾目錄,例如我原生目錄 E:\Tools\sqlite)。開啟cmd,輸入sqlite3,如果彈出以下訊息,就表示成功了。

      

sqlite常用操作

     1. 建立一個資料庫檔案

      >命令列進入到要建立db檔案的檔案夾位置

      >使用命令建立資料庫檔案: sqlite3 所要建立的db檔案名稱

      >使用命令查看已附加的資料庫檔案: .databases

       

     2. 開啟已建立的資料庫檔案

      >命令列進入到要開啟的db檔案的檔案夾位置

      >使用命令列開啟已建立的db檔案: sqlite3 檔案名稱(注意:假如檔案名稱不存在,則會建立一個新的db檔案)

     3. 查看協助命令

      >命令列直接輸入sqlite3,進去到sqlite3命令列介面

      >輸入.help 查看常用命令

      

使用sqlite管理工具

      shell指令碼雖然提供了很強大的功能,但是使用起來還是不夠方便,幸運的是,sqlite有很多開源而且優秀的DBMS!

      這裡我將使用一款叫做SQLiteSPY的軟體,官網地址為http://www.yunqa.de/delphi/doku.php/products/sqlitespy/index,這個軟體是綠色免安裝版,解壓直接運行就可以了。

      

      可以看到,SQLiteSpy的介面布局和SQLServer很相近,操作起來很方便,這裡就不在繼續詳細介紹了。(要知道的一點就是單純使用這個軟體也可以建立和使用sqlite資料庫,不需要與上面提到的shell工具關聯)

C#使用System.Data.SQLite.dll訪問資料庫

      SQLite提供了用於C#調用的dll,為http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki,注意根據.NET FRAMEWORK版本下載對應的組件。在項目中只要引入System.Data.SQLite.dll這個組件,就可以實現資料庫操作了。由於SQLite.dll實現了ADO.NET的介面,所以熟悉ADO.NET的人上手SQLite.dll也是非常快的。DEMO資料庫表的結構為:

CREATE TABLE hero(    hero_id   INT          NOT NULL PRIMARY KEY,    hero_name NVARCHAR(10) NOT NULL);

      比較需要注意到一點是資料庫連接字串,SQLite使用的連接字串比較簡單,只要寫上資料庫檔案的引用路徑就可以了。DEMO是一個控制台應用程式,增刪查改的執行個體代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.Common;using System.Data.SQLite;namespace ConsoleApp{    class Program    {        static readonly string DB_PATH = "Data Source=E:/database/sqlite/arena.db";        static void Select()        {            using (SQLiteConnection con = new SQLiteConnection(DB_PATH))            {                con.Open();                string sqlStr = @"SELECT *                                    FROM hero";                using(SQLiteCommand cmd = new SQLiteCommand(sqlStr,con))                {                    using (SQLiteDataReader dr = cmd.ExecuteReader())                    {                        while (dr.Read())                        {                            Console.WriteLine(dr["hero_id"].ToString() + dr["hero_name"]);                        }                    }                }            }        }        static void Insert()        {            using (SQLiteConnection con = new SQLiteConnection(DB_PATH))            {                con.Open();                string sqlStr = @"INSERT INTO hero                                  VALUES                                  (                                      1,                                      ‘薩滿‘                                  )";                using(SQLiteCommand cmd = new SQLiteCommand(sqlStr,con))                {                    cmd.ExecuteNonQuery();                }                       }        }        static void Update()        {            using (SQLiteConnection con = new SQLiteConnection(DB_PATH))            {                con.Open();                string sqlStr = @"UPDATE hero                                     SET hero_name = ‘盜賊‘                                   WHERE hero_id = 1";                using (SQLiteCommand cmd = new SQLiteCommand(sqlStr, con))                {                    cmd.ExecuteNonQuery();                }                  }        }        static void Delete()        {            using (SQLiteConnection con = new SQLiteConnection(DB_PATH))            {                con.Open();                string sqlStr = @"DELETE FROM hero";                using (SQLiteCommand cmd = new SQLiteCommand(sqlStr, con))                {                    cmd.ExecuteNonQuery();                }            }        }        static void Main(string[] args)        {            Insert();            Select();            Update();            Select();            Delete();        }    }}

SQLite使用入門

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.