-
public final class SQLiteCustomFunctionDescribes a custom SQL function.
-
-
Field Summary
Fields Modifier and Type Field Description public final Stringnamepublic final intnumArgspublic final SQLiteDatabase.CustomFunctioncallback
-
Constructor Summary
Constructors Constructor Description SQLiteCustomFunction(String name, int numArgs, SQLiteDatabase.CustomFunction callback)Create custom function.
-
-
-
Constructor Detail
-
SQLiteCustomFunction
SQLiteCustomFunction(String name, int numArgs, SQLiteDatabase.CustomFunction callback)
Create custom function.- Parameters:
name- The name of the sqlite3 function.numArgs- The number of arguments for the function, or -1 tosupport any number of arguments.callback- The callback to invoke when the function is executed.
-
-