C# 單機Window 程式 sqlite 資料庫實現

來源:互聯網
上載者:User
文章目錄
  • 資料庫分析和選擇
  • C#中sqlite資料庫實現

這幾天幫一個醫院做了一個簡單的藥品查詢 form應用,單機版

資料庫分析和選擇

Excel 檔案 做資料來源

 限制性比較強,且不適合查詢,分析 等操作

 

Access 資料庫

Access 管理資料介面和功能不強 

  

mysql 和sql server 

功能滿足,但需要安裝

 

最後 還是選擇sqlite 資料庫

C#中sqlite資料庫實現

step one 下載sqlite 資料庫  .net 訪問組件,並安裝

http://sourceforge.net/projects/sqlite-dotnet2/

 

Step Two 建立項目,並添加sqlite 訪問組件和sqlite資料庫檔案

  

 

Step Three 建立連結訪問資料庫

 public static DataTable GetAllBook()      {          DataTable dt = new DataTable();          try          {              SQLiteConnection conn = new SQLiteConnection("Data Source=db/Books.sqlite;");              conn.Open();              SQLiteCommand cmd = new SQLiteCommand(conn);              cmd.CommandText = "SELECT * FROM Book";              cmd.CommandType = CommandType.Text;              //Console.WriteLine(cmd.CommandText);              SQLiteDataReader dr = cmd.ExecuteReader();              if (dr.HasRows)              {                  dt.Load(dr);              }              else {                  //throw new NullReferenceException("No Record Available.");              }                dr.Close();              conn.Close();                                        }          catch (ArgumentException ae)          {              MessageBox.Show(ae.Message + " \n\n" + ae.Source + "\n\n" + ae.StackTrace + "\n\n" + ae.Data);          }          catch (Exception ex)          {              //throw new Exception(ex.Message);              MessageBox.Show(ex.Message + " \n\n" + ex.Source + "\n\n" + ex.StackTrace + "\n\n" + ex.Data);          }  

 

相關文章

聯繫我們

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