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

Display dynamic image from database or remote source with p:graphicImage and StreamedContent

The <p:graphicImage> requires a special getter method. It will namely be invoked twice per generated image, each in a completely different HTTP request. The first HTTP request, which has requested the HTML result of a JSF page, will invoke the getter for the first time in order to generate the HTML <img> element with the … Read more