-
public interface SQLiteDatabase.FunctionA callback interface for a custom sqlite3 function. This can be used to create a functionthat can be called from sqlite3 database triggers, or used in queries.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSQLiteDatabase.Function.Argspublic interfaceSQLiteDatabase.Function.Result
-
Method Summary
Modifier and Type Method Description abstract voidcallback(SQLiteDatabase.Function.Args args, SQLiteDatabase.Function.Result result)Invoked whenever the function is called. -
-
Method Detail
-
callback
abstract void callback(SQLiteDatabase.Function.Args args, SQLiteDatabase.Function.Result result)
Invoked whenever the function is called.
- Parameters:
args- function arguments
-
-
-
-