回覆列表
  • 1 # 19163131334

    一、關於SQLite ADO.NET: System.Data.SQLite 是一個原始 SQLite 的加強版。它不需要連結 .NET Runtime,因此可脫離 .NET 獨立釋出,它內嵌了一個完整的 ADO.NET 2.0 引擎,為開發提供了完整的支援。二、在C#中使用SQLite1. 新增引用: System.Data.SQLite.DLL 。2. 建立資料庫檔案: SQLiteConnection.CreateFile(fileName);3. 連線資料庫: var connection = new SQLiteConnection(connectionString);connectionString 中包含了資料庫的一些配置資訊,比如資料庫檔案路徑,資料庫密碼等,可用 SQLiteConnectionStringBuilder 來建立 connectionString,當然也有其他方法,都很簡單。4. 從資料庫讀取資料。三、程式碼:view sourceprint?// 注意此處 using 。using System;using System.Data.SQLite;using System.Text;namespace ConsoleApplication{public class SQLiteTester{public static void Test(){// 1.建立一個數據庫檔案。var databaseFileName = "D:/test.db3";SQLiteConnection.CreateFile(databaseFileName);// 2.建立資料庫連線。var connectionString = new SQLiteConnectionStringBuilder{DataSource = databaseFileName,Password = "xxxxxx" // 此處假設資料庫密碼為: xxxxxx。};// 當然也可以直接: var connection = new SQLiteConnection("data source=" + databaseFileName + ";password=" + Password);using (var connection = new SQLiteConnection(connectionString.ToString())){// 3.開啟連線。connection.Open();

  • 中秋節和大豐收的關聯?
  • 醃蕨菜的做法,醃蕨菜怎麼做好吃,醃蕨菜的家常?