在Windows Mobile上如何用DAC操作SQLite資料庫

來源:互聯網
上載者:User
其實很簡單,步驟如下:

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

 

相關文章

聯繫我們

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