9
我試圖訪問從我的Windows Phone 8應用SQLite數據庫,但我遇到下面的錯誤,每當SQLite的代碼被擊中:WP8 SQLite的錯誤:指定的模塊無法找到
{System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
at System.StubHelpers.StubHelpers.GetWinRTFactoryObject(IntPtr pCPCMD)
at Sqlite.Sqlite3.sqlite3_open_v2(String filename, Database& db, Int32 flags, String zVfs)
at SQLite.SQLite3.Open(String filename, Database& db, Int32 flags, IntPtr zVfs)
at SQLite.SQLiteConnection..ctor(String databasePath, SQLiteOpenFlags openFlags, Boolean storeDateTimeAsTicks)
at TopoMap.Map.MapTileServer.<Initialise>d__0.MoveNext()}
- 我已經爲Windows Phone(v3.8.4.3)安裝了Visual Studio擴展SQLite。
- 我已經安裝了sqlite-net-wp8 NuGet包(v3.8.4.3)。
- 我已經添加SQLite.cs和SQLiteAsync.cs到我的項目。
- 我已將USE_WP8_NATIVE_SQLITE條件編譯符號添加到我的項目中。
該項目運行良好,沒有問題,直到訪問底層Sqlite3類的代碼行被觸發。
任何想法可能是什麼問題?
非常感謝!似乎我已經錯過了第8步 - 做! – Gavin
+1我錯過了第8步加文。 :) –
經過4個多小時的嘗試,我發現了第8步! – FunksMaName