Home | History | Annotate | Download | only in SQLite

Lines Matching refs:Function

459      * Create regular function.
461 * @param name the name of the new function
462 * @param nargs number of arguments to function
463 * @param f interface of function
466 public void create_function(String name, int nargs, Function f) {
472 private native void _create_function(String name, int nargs, Function f);
475 * Create aggregate function.
477 * @param name the name of the new function
478 * @param nargs number of arguments to function
479 * @param f interface of function
482 public void create_aggregate(String name, int nargs, Function f) {
488 private native void _create_aggregate(String name, int nargs, Function f);
491 * Set function return type. Only available in SQLite 2.6.0 and
494 * @param name the name of the function whose return type is to be set
567 * Set authorizer function. Only available in SQLite 2.7.6 and
570 * @param auth the authorizer function
582 * Set trace function. Only available in SQLite 2.7.6 and above,
585 * @param tr the trace function
620 * Set profile function. Only available in SQLite 3.6 and above,
623 * @param pr the trace function
885 * @return boolean when true, function supported/succeeded