Uses of Class
org.sqlite.Function
-
Packages that use Function Package Description org.sqlite org.sqlite.core -
-
Uses of Function in org.sqlite
Subclasses of Function in org.sqlite Modifier and Type Class Description static classFunction.AggregateProvides an interface for creating SQLite user-defined aggregate functions.static classFunction.WindowProvides an interface for creating SQLite user-defined window functions.Methods in org.sqlite with parameters of type Function Modifier and Type Method Description static voidFunction. create(java.sql.Connection conn, java.lang.String name, Function f)Registers a given function with the connection.static voidFunction. create(java.sql.Connection conn, java.lang.String name, Function f, int flags)Registers a given function with the connection.static voidFunction. create(java.sql.Connection conn, java.lang.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 Function Modifier and Type Method Description abstract intDB. create_function(java.lang.String name, Function f, int nArgs, int flags)Create a user defined function with given function name and the function object.intNativeDB. create_function(java.lang.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 intDB. value_int(Function f, int arg)Accesses the parameter values on the function or aggregate in int data type with the function object and the parameter value.intNativeDB. value_int(Function f, int arg)abstract longDB. value_long(Function f, int arg)longNativeDB. value_long(Function f, int arg)abstract java.lang.StringDB. value_text(Function f, int arg)java.lang.StringNativeDB. value_text(Function f, int arg)abstract intDB. value_type(Function f, int arg)intNativeDB. value_type(Function f, int arg)
-