1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* 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;
}
|