I am using sqlite on Android,how can I get the compile_options on Android Sqlite inside the OS
private fun getChunkSizeFromSqlite() {
val db = BundleStorageProvider.getDb(mPlatformType) ?: return
val cursor = db.query("PRAGMA compile_options")
while (cursor.moveToNext()) {
val compileOption = cursor.getString(0)
KxbLog.i("hello", compileOption)
}