Version of SQLite used in Android?

Here is a link to the official docs which include the main points in this answer: android.database.sqlite package-level javadoc Kotlin code to get framework SQLite version (tip: just stick a breakpoint in your Activity onCreate() and use this code in Evaluate Expression…): val version = android.database.sqlite.SQLiteDatabase.create(null).use { android.database.DatabaseUtils.stringForQuery(it, “SELECT sqlite_version()”, null) } “Framework (API ${android.os.Build.VERSION.SDK_INT}) … Read more

How does the search_path influence identifier resolution and the “current schema”

What is the schema search path search_path? The manual: […] tables are often referred to by unqualified names, which consist of just the table name. The system determines which table is meant by following a search path, which is a list of schemas to look in. Bold emphasis mine. This explains identifier resolution. The “current … Read more