小試SQLite [.NET 2.0中的應用]

來源:互聯網
上載者:User
SQLite是一個輕量級的嵌入式檔案型資料庫,下面是一個在.net 2.0中的應用嘗試。

使用工具:
SQLite Expert SQLite資料庫管理工具,非常好用,類似我之前介紹的EMS SQL Manager 2007 for MySQL
System.Data.SQLite SQLite For ADO.NET驅動,類似我之前介紹的MySql.Data.dll
這2個工具都包括了SQLite的引擎

使用SQLite Expert 建立資料庫和表
 

建立欄位
 

瀏覽資料
 

SQL查詢,文法貌似和MySQL有點像,看到了MySQL的影子
 

ASP.NET 2.0 中的應用,建立一網站,引用System.Data.SQLite.dll,下面是一段程式碼範例:SQLiteConnection con = new SQLiteConnection(@"Data Source=" + Server.MapPath("App_Data") + "/book.db3");
SQLiteCommand cmd = new SQLiteCommand("SELECT * FROM ezbook ORDER BY id",con);
con.Open();
SQLiteDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
GridView1.DataSource = dr;
GridView1.DataBind();
dr.Close();


附:本文中的樣本 SQLite_Net_demo

相關文章

聯繫我們

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