/**
* A callback interface for a custom sqlite3 function.
* This can be used to create a function that can be called from
* sqlite3 database triggers.
* @hide
*/
public interface CustomFunction {
public void callback(String[] args);
}
I found an interface like the one above for adding a Custom Function, but it's not usable because I can't set the return value. Is there any other way to do this?