クラス
org.sqlite.udf.Function の使用

Function を使用しているパッケージ
org.sqlite   
org.sqlite.jdbc   
org.sqlite.swig   
org.sqlite.udf   
 

org.sqlite での Function の使用
 

Function 型のパラメータを持つ org.sqlite のメソッド
 void Database.registerFunction(Function func)
          invoke 'sqlite3_create_function()' function and the User-Defined function is registered.
 void Database.unregisterFunction(Function func)
          invoke 'sqlite3_create_function()' function and the User-Defined function is unregistered.
 

org.sqlite.jdbc での Function の使用
 

Function 型のパラメータを持つ org.sqlite.jdbc のメソッド
 void JdbcConnection.registerFunction(Function func)
          invoke 'sqlite3_create_function()' function and the User-Defined function is registered.
 void JdbcConnection.unregisterFunction(Function func)
          invoke 'sqlite3_create_function()' function and the User-Defined function is registered.
 

org.sqlite.swig での Function の使用
 

Function 型のパラメータを持つ org.sqlite.swig のメソッド
static int SQLite3.register_function(SWIGTYPE_p_sqlite3 db, Function func)
           
static int SQLite3.unregister_function(SWIGTYPE_p_sqlite3 db, Function func)
           
 

org.sqlite.udf での Function の使用
 

org.sqlite.udf での Function のサブクラス
 class AggregateFunction
          User-Defined aggregate function class.
 class ScalarFunction
          User-Defined scalar function class.