SQLite Forum

Functions in Precompiled Binaries for Android
Login

Functions in Precompiled Binaries for Android

(1) By bosborn on 2021-06-23 18:57:49 [source]

Are there any plans to improve function support for return values and non string arguments?

android_database_SQLiteConnection.cpp contains a TODO to support functions that return values.

Would like to return values (double, integer, null) from custom functions directly from the precompiled binaries.

Would also like to access an argument value directly as a blob instead of pre-decoded string.

Something similar to the xerial sqlite-jdbc Function implementation with example usage here.