Uses of Class
org.sqlite.udf.Function

Packages that use Function
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
org.sqlite.swig Provides the classes necessary to invoke a SQLite C Interface API. 
org.sqlite.udf Provides the classes necessary to create a User-Defined function. 
 

Uses of Function in org.sqlite
 

Methods in org.sqlite with parameters of type Function
 void Database.createFunction(Function func)
          invoke org.sqlite.udf.Function#register() method.
 void Database.dropFunction(Function func)
          invoke org.sqlite.udf.Function#unregister() method.
 

Uses of Function in org.sqlite.jdbc
 

Methods in org.sqlite.jdbc with parameters of type Function
 void JdbcConnection.createFunction(Function func)
          invoke sqlite3_create_function() function.
 void JdbcConnection.dropFunction(Function func)
          invoke sqlite3_create_function() function.
 

Uses of Function in org.sqlite.swig
 

Methods in org.sqlite.swig with parameters of type Function
static int SQLite3.sqlite3_create_function(SWIGTYPE_p_sqlite3 db, Function func)
           
static int SQLite3.sqlite3_drop_function(SWIGTYPE_p_sqlite3 db, Function func)
           
 

Uses of Function in org.sqlite.udf
 

Subclasses of Function in org.sqlite.udf
 class AggregateFunction<T>
          User-Defined aggregate function class.
 class ScalarFunction
          User-Defined scalar function class.