Android get SQLite Library Version
/**
* get the version of the SQLite Library that is installed in the android
* system
*
* @return version , for example 3.5.2
*/
public String getSqliteLibraryVersion() {
Cursor cursor = SQLiteDatabase.openOrCreateDatabase(":memory:", null)
.rawQuery("select sqlite_version() AS sqlite_version", null);
String sqliteVersion = "";
while (cursor.moveToNext()) {
sqliteVersion += cursor.getString(0);
}
return sqliteVersion;
}
Comments