程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#使用System.Data.SQLite操作SQLite,

C#使用System.Data.SQLite操作SQLite,

編輯:C#入門知識

C#使用System.Data.SQLite操作SQLite,


使用System.Data.SQLite 下載地址:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

得到System.Data.SQLite.dll添加到工程引用;

 建表,插入操作

  1. static void Main(string[] args)  
  2.         {  
  3.             SQLiteConnection conn = null;  
  4.   
  5.             string dbPath = "Data Source =" + Environment.CurrentDirectory + "/test.db";  
  6.             conn = new SQLiteConnection(dbPath);//創建數據庫實例,指定文件位置  
  7.             conn.Open();//打開數據庫,若文件不存在會自動創建  
  8.   
  9.             string sql = "CREATE TABLE IF NOT EXISTS student(id integer, name varchar(20), sex varchar(2));";//建表語句  
  10.             SQLiteCommand cmdCreateTable = new SQLiteCommand(sql, conn);  
  11.             cmdCreateTable.ExecuteNonQuery();//如果表不存在,創建數據表  
  12.   
  13.             SQLiteCommand cmdInsert = new SQLiteCommand(conn);  
  14.             cmdInsert.CommandText = "INSERT INTO student VALUES(1, '小紅', '男')";//插入幾條數據  
  15.             cmdInsert.ExecuteNonQuery();  
  16.             cmdInsert.CommandText = "INSERT INTO student VALUES(2, '小李', '女')";  
  17.             cmdInsert.ExecuteNonQuery();  
  18.             cmdInsert.CommandText = "INSERT INTO student VALUES(3, '小明', '男')";  
  19.             cmdInsert.ExecuteNonQuery();  
  20.   
  21.             conn.Close();  
  22.         }  

    可以使用SQLite Database Browser來查看數據:

下載地址:http://sourceforge.net/projects/sqlitebrowser/

 

     建表成功。

當然這種方法插入數據效率不高,數據量大的話要使用下面這種方法:

  1. static void Main(string[] args)  
  2.        {  
  3.            string dbPath = Environment.CurrentDirectory + "/test.db";//指定數據庫路徑  
  4.              
  5.            using(SQLiteConnection conn = new SQLiteConnection("Data Source =" + dbPath))//創建連接  
  6.            {  
  7.                conn.Open();//打開連接  
  8.                using(SQLiteTransaction tran = conn.BeginTransaction())//實例化一個事務  
  9.                {  
  10.                    for (int i = 0; i < 100000; i++ )  
  11.                    {  
  12.                        SQLiteCommand cmd = new SQLiteCommand(conn);//實例化SQL命令  
  13.                        cmd.Transaction = tran;  
  14.                        cmd.CommandText = "insert into student values(@id, @name, @sex)";//設置帶參SQL語句  
  15.                        cmd.Parameters.AddRange(new[] {//添加參數  
  16.                            new SQLiteParameter("@id", i),  
  17.                            new SQLiteParameter("@name", "中國人"),  
  18.                            new SQLiteParameter("@sex", "男")  
  19.                        });  
  20.                        cmd.ExecuteNonQuery();//執行查詢  
  21.                    }  
  22.                    tran.Commit();//提交  
  23.                }  
  24.            }  
  25.        }  

 

插入這樣的十萬條數據只需要5秒左右。

 

讀取數據:

 

  1. static void Main(string[] args)  
  2.         {  
  3.             SQLiteConnection conn = null;  
  4.   
  5.             string dbPath = "Data Source =" + Environment.CurrentDirectory + "/test.db";  
  6.             conn = new SQLiteConnection(dbPath);//創建數據庫實例,指定文件位置  
  7.             conn.Open();//打開數據庫,若文件不存在會自動創建  
  8.   
  9.             string sql = "select * from student";  
  10.             SQLiteCommand cmdQ = new SQLiteCommand(sql, conn);  
  11.   
  12.             SQLiteDataReader reader = cmdQ.ExecuteReader();  
  13.   
  14.             while (reader.Read())  
  15.             {  
  16.                 Console.WriteLine(reader.GetInt32(0) + " " + reader.GetString(1) + " " + reader.GetString(2));  
  17.             }  
  18.             conn.Close();  
  19.   
  20.             Console.ReadKey();  
  21.         }  

 

    數據讀取成功。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved