On Aug 24, 2011, at 5:26 PM, gabriel.b...@gmail.com wrote:
> I'm receiving an EntryPointNotFoundException whenever I call 
> SQLiteConnection.Close().

It just occurred to me...

The other possibility is that the Android you're targeting is too old. 
Mono.Data.Sqlite requires Android API level 8 (Android v2.2) or later, as 
earlier versions don't have all the required exports. (Technically API level 8 
doesn't have everything, which is why DataSet/DataTable isn't supported, but it 
has enough to actually get things started...)

If you can do a runtime check on Android.OS.Build.VERSION.SdkInt to determine 
the currently executing API level (if you want to have runtime version 
detection), or you can use `#if __ANDROID_8__` for a build-time solution.

 - Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to