[mono-android] Java.Lang.Reflect?

2012-10-15 Thread Jeremy A. Kolb - ARA/NED
I'm trying to follow the directions here: https://groups.google.com/forum/#!msg/spatialite-users/eDMvwrlF0oI/iXcPH0cLkRMJ but am unsure how to get at Java.Lang.Reflect or get the equivalent working in C#. Is this possible? I'm using pinvoke for the native code portion and in theory that will

Re: [mono-android] Java.Lang.Reflect?

2012-10-15 Thread Jeremy A. Kolb - ARA/NED
Nevermind I figured it out. This is how you enable the extension loading mechanism for Android's SQLite in Xamarin: [DllImport("libsqlite.so")] internal static extern int sqlite3_enable_load_extension(IntPtr sqliteDb, int onoff); private IntPtr GetInternalDatabaseHandle(SQLiteDatabase db) {