在.NET CF(WM 6)中使用了System.Data.SQLite,程式在個別手機(WM6.1和6.5)上運行異常,異常提示為unsafenativemethods.sqlite3_open_interop方法。如果你使用的是早期版本的System.Data.SQLite,那麼在WM6.1或高版本的手機上可能會出現此異常。
在System.Data.SQLite的Version History發現了這樣的描述:
1.0.50.0 - June 27, 2008
Enhanced the mergebin utility to work around the strong name validation bug on the Compact Framework. The old workaround kludged the DLL and caused WM6.1 to fail to load it. This new solution is permanent and no longer kludges the DLL.
我使用的是1.0.48版,這個版本包括了SQLite引擎和ADO.NET的封裝。作者把它們合并到了一個dll檔案中。這個dll同時支援native code或managed code調用。但在1.0.50版本的更新中,已經取消了這樣的方式。 即ADO.NET provider for SQLite和SQLite.Interop分開單獨提供。所以後續版本的System.Data.SQLite.dll檔案僅是一個ADO.NET provider for SQLite,不包含SQLite的源碼,而nativer的封裝在SQLite.Interop.xxx.dll這樣的檔案中。System.Data.SQLite.dll使用時需要p/invoke SQLite.Interop.xxx.dll。
引用了新的程式集後,沒有發現上面這個異常。
作者在後續的版本中提供了ManagedOnly的System.Data.SQLite.dll,使用時需要native sqlite3.dll or Linux shared library from http://www.sqlite.org,我在asp.net 中測試可以使用,但在.NET CF中異常。看來這個ManagedOnly應該不支援arm平台。
標籤:Windows Mobile,.NET CF,SQLite,System.Data.SQLite
http://chy710.cnblogs.com