How To Upgrade Sqlite Version?
I'm developing my first app and using the following code I see what is my SQLite version: Cursor cursor = SQLiteDatabase.openOrCreateDatabase(':memory:', null).rawQuery('select sql
Solution 1:
The SQLite library that you access with SQLiteDatabase
is part of Android and cannot be replaced (unless you recompile Android on a rooted device).
You have to compile your own copy of SQLite with the NDK and access it through your own wrapper functions/objects.
Post a Comment for "How To Upgrade Sqlite Version?"