其實很簡單,步驟如下:
1. 下載SQLite 引擎及.net Provider. 地址:http://sqlite.phxsoftware.com/
2. 在項目添加對"System.Data.SQLite.dll"及"RaisingStudio.DAC.dll"的引用。
3. 在項目下建立名為"providers.config"的xml檔案,內容配置如下:
代碼<?xml version="1.0" encoding="utf-8"?>
<providers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<clear/>
<provider name="SQLite"
description="SQLite, System.Data.SQLite Interop Library v1.0.65.0"
enabled="true"
assemblyName="System.Data.SQLite, Version=1.0.65.0, Culture=neutral, PublicKeyToken=1fdb50b1b62b4c84"
connectionClass="System.Data.SQLite.SQLiteConnection"
commandClass="System.Data.SQLite.SQLiteCommand"
parameterClass="System.Data.SQLite.SQLiteParameter"
parameterDbTypeClass="System.Data.DbType, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac"
parameterDbTypeProperty="DbType"
dataAdapterClass="System.Data.SQLite.SQLiteDataAdapter"
commandBuilderClass="System.Data.SQLite.SQLiteCommandBuilder"
usePositionalParameters="false"
useParameterPrefixInSql="true"
useParameterPrefixInParameter="true"
parameterPrefix="@"
setDbParameterPrecision="false"
setDbParameterScale="false"
allowMARS="false"
/>
</providers>
*注意:根據引用的System.Data.SQLite.dll的版本的不同,作相應修改。
4. 添加名為"connections.config"的設定檔:內容:
代碼<?xml version="1.0" encoding="utf-8" ?>
<connections>
<connection providerName="SQLite">Data Source=\Program Files\SmartDeviceProject3\Data\sqlite.db;Pooling=true;FailIfMissing=false</connection>
</connections>
5. 編譯,運行。*注意:運行時,需將"SQLite.Interop.065.DLL"(注意版本),"providers.config","connection.config"及相應的資料庫檔案複製到運行目錄下.
樣本:下載
參見:http://dac.codeplex.com/WorkItem/View.aspx?WorkItemId=4034