Windows 8 Metro用C#串連SQLite及建立資料庫,資料表的增刪改查的實現

來源:互聯網
上載者:User

  1.Metro中使用SQLite資料庫具體步驟如下:

  1).下載SQLite for WinRT

  地址:http://www.sqlite.org/download.html

  下載Precompiled Binaries for Windows Runtime,這是一個Visual Studio的一個擴充,檔案以vsix為尾碼,直接雙擊運行即可。(如)

  2).為項目添加引用

  建立一個項目,在解決方案在選擇“引用->添加引用”,在引用管理器的左邊列表中選擇Windows->擴充,然後再右邊的列表中選中如所示:

注意:選擇 SQLite for Windows Runtime 和 Microsoft Visual C++ Runtime Package

  3). 為項目添加C# 驅動

   在解決方案中,選擇項目,單擊右鍵,選擇“管理NuGet程式包”,在管理器中進行如的操作:

安裝完成後,你的項目的根目錄下會多出兩個檔案:SQLite.cs和SQLiteAsync.cs檔案,我們就可以通過這兩個類來操作SQLite了。

  2.建立資料庫

  1).首先:聲明一個MemberInfo類也就是表主鍵自動成長
複製代碼 代碼如下:   public class MemberInfo

{

  [SQLite.AutoIncrement, SQLite.PrimaryKey]

    public int ID { set; get; }

     public string Name { set; get; }

  public int Age { set; get; }

    public string Address { set; get; }

}

  2).寫一個方法用於建立資料庫Member.sqlite和表MemberInfo
複製代碼 代碼如下:  {

      string path =Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "Member.sqlite"); //資料檔案儲存的位置

      using (var db = new SQLite.SQLiteConnection(path)) //開啟建立資料庫和表

 {

        db.CreateTable<MemberInfo>();

}

}

  3).簡單的操作sqlite資料庫(增,刪,改,查詢)
複製代碼 代碼如下:   public void Insert(MemberInfo data)

{

    try

{

       using (var db = newSQLiteConnection(path))

      {

   db.Insert(data);

}

}

    catch(Exception e)

{

      throw e;

}

}

  publicvoid Delete(int id)

{

    try

  {

   T data = Select(id);

      using (var db = newSQLiteConnection(path))

   {

  db.Delete(data);

   }

}

    catch(Exception e)

{

       throw e;

}

}

   public void Insert(T data)

{

     try

 {

        using (var db = newSQLiteConnection(path))

       {

    db.Insert(data);

}

}

     catch(Exception e)

{

       throw e;

}

}

    publicvoid Delete(int id)

 {

     try

{

   T data = Select(id);

       using (var db = newSQLiteConnection(path))

  {

   db.Delete(data);

}

}

     catch(Exception e)

{

      throw e;

}

}

  public MemberInfo Select(int id)

{

    try

     {

        MemberInfo data = null;

        using (var db = newSQLiteConnection(path))

       {

          List<object> obj = db.Query(newTableMapping(typeof(MemberInfo)), string.Format("Select * from MemberInfo where ID={0}", id));

          if (obj != null&&obj.Count>0)

   {

     data = obj[0]  as MemberInfo;

  }

}

       return data;

}

    catch (Exception e)

{

      throw e;

}

}

  publicvoid Updata(MemberInfo data)

{

    try

{

      using (var db = newSQLiteConnection(path))

{

db.Update(data);

}

}

    catch(Exception e)

{

        throw e;

}

}

  publicObservableCollection<MemberInfo> SelectAll()

{

    ObservableCollection<MemberInfo> list = newObservableCollection<MemberInfo>();

    using (var db =newSQLiteConnection(path))

{

      List<object> query = db.Query(newTableMapping(typeof(MemberInfo)), "select * from MemberInfo");

       foreach (var mem in query)

{

          MemberInfo info = mem asMemberInfo;

    list.Add(info);

}

}

    return list;

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.