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 sqlite_version() AS sqlite_version", null); String sqliteVersion = ""; while(cursor.moveToNext()) sqliteVersion += cursor.getString(0); Log.e("Version", sqliteVersion); My version is 3.7.11. Since I need to use some new features, how to upgrade it to the latest version? 回答1: The SQLite library that you access with