在項目中使用SQLite資料庫小結

來源:互聯網
上載者:User

標籤:des   style   blog   http   color   使用   io   資料   

------------------------------------------------------------------------
推薦:
- VS2012 使用 1.0.84 版的庫
- VS2013 使用 1.0.93 版的庫
------------------------------------------------------------------------
1、安裝運行庫
sqlite-netFx45-setup-bundle-x64-2012-1.0.84.0.exe
sqlite-netFx45-setup-bundle-x86-2012-1.0.84.0.exe(最新的測試,64位系統,只要裝這個就行了)
選安裝到GAC,整合到VS2012(或VS2013)

2、建立各項目,VS2012項目的.NET版本選4.5,VS2013項目的.NET版本選4.5.1

3、安裝nuget

1 install-package EntityFramework -version 5.02 install-package System.Data.SQLite -version 1.0.84

(最新的測試,64位系統,這步也不需要)

4、修改app.config/web.config(不加會提示:指定的儲存區提供者在配置中找不到)

(最新的測試,這些不加也行,靈異了)

<system.data><DbProviderFactories><remove invariant="System.Data.SQLite"/><add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.84.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /></DbProviderFactories></system.data>

5、正常添加edmx即可在項目中操作SQLite資料庫。

 

========================================
最新的測試,上面很多步驟都不需要:
========================================
1、只要安裝x86的運行庫即可(VS2012用1.0.84.0,VS2013用1.0.93.0)
2、建立一個ClassLibrary的models項目庫
3、在項目庫中即可添加edmx(T4或預設範本都沒問題)
4、mvc3/4項目和console項目,直接引用models項目庫
5、mvc項目修改web.config,console項目修改app.config,添加連接字串
6、mvc項目修改views\web.config添加對models項目庫的namespace引用
7、然後就可以在項目中正常訪問sqlite資料庫了
  注意:T4模板(產生獨立的POCO類)的edmx可以直接使用,預設範本(所有類全產生在designer.cs中)的edmx在引用的項目中需要修改web.config:

<compilation debug="true" targetFramework="4.0"> <!-- 這裡也可能是4.5,VS2013是4.5.1,根據項目需要 --><assemblies><add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /></assemblies></compilation>

 

==============================================

附註:SQLite 查詢出錯 IndexOutOfRange,是缺少欄位,或者欄位名錯誤。

 

p.s. 寫了個小測試專案,放在東京程式碼程式庫裡了。

相關文章

聯繫我們

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