Uses of Class
org.sqlite.Function
Packages that use Function
-
Uses of Function in org.sqlite
Subclasses of Function in org.sqliteModifier and TypeClassDescriptionstatic class
Provides an interface for creating SQLite user-defined aggregate functions.static class
Provides an interface for creating SQLite user-defined window functions.Methods in org.sqlite with parameters of type FunctionModifier and TypeMethodDescriptionstatic void
Function.create
(Connection conn, String name, Function f) Registers a given function with the connection.static void
Function.create
(Connection conn, String name, Function f, int flags) Registers a given function with the connection.static void
Function.create
(Connection conn, String name, Function f, int nArgs, int flags) Registers a given function with the connection. -
Uses of Function in org.sqlite.core
Methods in org.sqlite.core with parameters of type FunctionModifier and TypeMethodDescriptionabstract int
DB.create_function
(String name, Function f, int nArgs, int flags) Create a user defined function with given function name and the function object.int
NativeDB.create_function
(String name, Function func, int nArgs, int flags) abstract byte[]
DB.value_blob
(Function f, int arg) byte[]
NativeDB.value_blob
(Function f, int arg) abstract double
DB.value_double
(Function f, int arg) double
NativeDB.value_double
(Function f, int arg) abstract int
Accesses the parameter values on the function or aggregate in int data type with the function object and the parameter value.int
abstract long
DB.value_long
(Function f, int arg) long
NativeDB.value_long
(Function f, int arg) abstract String
DB.value_text
(Function f, int arg) NativeDB.value_text
(Function f, int arg) abstract int
DB.value_type
(Function f, int arg) int
NativeDB.value_type
(Function f, int arg)