|
||||||||||
| 前 次 | フレームあり フレームなし | |||||||||
| 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. |
| org.sqlite での Function の使用 |
|---|
| Function 型のパラメータを持つ org.sqlite のメソッド | |
|---|---|
void |
Database.createFunction(Function func)
invoke sqlite3_create_function() function. |
void |
Database.dropFunction(Function func)
invoke sqlite3_create_function() function. |
| org.sqlite.jdbc での Function の使用 |
|---|
| Function 型のパラメータを持つ org.sqlite.jdbc のメソッド | |
|---|---|
void |
JdbcConnection.createFunction(Function func)
invoke sqlite3_create_function() function. |
void |
JdbcConnection.dropFunction(Function func)
invoke sqlite3_create_function() function. |
| org.sqlite.swig での Function の使用 |
|---|
| Function 型のパラメータを持つ org.sqlite.swig のメソッド | |
|---|---|
static int |
SQLite3.create_function(SWIGTYPE_p_sqlite3 db,
Function func)
|
static int |
SQLite3.drop_function(SWIGTYPE_p_sqlite3 db,
Function func)
|
| org.sqlite.udf での Function の使用 |
|---|
| org.sqlite.udf での Function のサブクラス | |
|---|---|
class |
AggregateFunction<T>
User-Defined aggregate function class. |
class |
ScalarFunction
User-Defined scalar function class. |
|
||||||||||
| 前 次 | フレームあり フレームなし | |||||||||