我正在嘗試爲Windows Phone 8的PhoneGap使用SQLite插件。我找到了2或3個不同的插件(也許它們都基於相同的基礎),並且都給了我應用程序執行時出錯。 我使用的插件是從這裏:https://github.com/marcucio/Cordova-WP-SqlitePluginWindows Phone 8的SQLitePlugin Phonegap崩潰
我也包括DLL。我正在使用PhoneGap 3.3。當我執行應用程序時,插件被加載(它看起來是正確的)並且一些操作正確地完成(一些CREATE和一些INSERT被執行),但是在給定時刻Visual Studio給我這個錯誤無限次:
An exception of type 'System.Security.SecurityException' occurred in mscorlib.ni.dll and wasn't handled before a managed/native boundary
An exception of type 'System.Security.SecurityException' occurred in mscorlib.ni.dll and wasn't handled before a managed/native boundary
A first chance exception of type 'System.IO.IsolatedStorage.IsolatedStorageException' occurred in mscorlib.ni.dll
我試過其他類似的插件,錯誤仍然出現。
與此問題相關的stackoverflow中的其他線程沒有解決問題。應用程序總是在IsolatedStorage操作中崩潰。
任何人都有同樣的問題,可以解決它?如果我不執行任何INSERT操作,插件不會崩潰。
謝謝。