Uses of Class
io.roastedroot.sqlite4j.Function
-
Packages that use Function Package Description io.roastedroot.sqlite4j io.roastedroot.sqlite4j.core io.roastedroot.sqlite4j.core.wasm -
-
Uses of Function in io.roastedroot.sqlite4j
Subclasses of Function in io.roastedroot.sqlite4j 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 io.roastedroot.sqlite4j with parameters of type Function Modifier and Type Method Description static 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 io.roastedroot.sqlite4j.core
Methods in io.roastedroot.sqlite4j.core with parameters of type Function Modifier and Type Method Description abstract intDB. create_function(String name, Function f, int nArgs, int flags)Create a user defined function with given function name and the function object.intWasmDB. create_function(String name, Function f, int nArgs, int flags)abstract byte[]DB. value_blob(Function f, int arg)byte[]WasmDB. value_blob(Function f, int arg)abstract doubleDB. value_double(Function f, int arg)doubleWasmDB. 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.intWasmDB. value_int(Function f, int arg)abstract longDB. value_long(Function f, int arg)longWasmDB. value_long(Function f, int arg)abstract StringDB. value_text(Function f, int arg)StringWasmDB. value_text(Function f, int arg)abstract intDB. value_type(Function f, int arg)intWasmDB. value_type(Function f, int arg) -
Uses of Function in io.roastedroot.sqlite4j.core.wasm
Methods in io.roastedroot.sqlite4j.core.wasm that return Function Modifier and Type Method Description static FunctionUDFStore. get(int idx)Methods in io.roastedroot.sqlite4j.core.wasm with parameters of type Function Modifier and Type Method Description static intUDFStore. registerFunction(String name, Function f)
-