public final class SQLiteCustomFunction
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
SQLiteDatabase.CustomFunction |
callback |
java.lang.String |
name |
int |
numArgs |
| Constructor and Description |
|---|
SQLiteCustomFunction(java.lang.String name,
int numArgs,
SQLiteDatabase.CustomFunction callback)
Create custom function.
|
public final java.lang.String name
public final int numArgs
public final SQLiteDatabase.CustomFunction callback
public SQLiteCustomFunction(java.lang.String name,
int numArgs,
SQLiteDatabase.CustomFunction callback)
name - The name of the sqlite3 function.numArgs - The number of arguments for the function, or -1 to
support any number of arguments.callback - The callback to invoke when the function is executed.