Uses of Class
org.sqlite.Function
Packages that use Function
-
Uses of Function in org.sqlite
Subclasses of Function in org.sqliteModifier and TypeClassDescriptionstatic classProvides an interface for creating SQLite user-defined aggregate functions.static classProvides an interface for creating SQLite user-defined window functions.Methods in org.sqlite with parameters of type FunctionModifier and TypeMethodDescriptionstatic voidFunction.create(Connection conn, String name, Function f) Registers a given function with the connection.static voidFunction.create(Connection conn, String name, Function f, int flags) Registers a given function with the connection.static voidFunction.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 intDB.create_function(String name, Function f, int nArgs, int flags) Create a user defined function with given function name and the function object.intNativeDB.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 doubleDB.value_double(Function f, int arg) doubleNativeDB.value_double(Function f, int arg) abstract intAccesses the parameter values on the function or aggregate in int data type with the function object and the parameter value.intabstract longDB.value_long(Function f, int arg) longNativeDB.value_long(Function f, int arg) abstract StringDB.value_text(Function f, int arg) NativeDB.value_text(Function f, int arg) abstract intDB.value_type(Function f, int arg) intNativeDB.value_type(Function f, int arg)