Package | Description |
---|---|
com.mckoi.database |
The core database classes for Mckoi.
|
Modifier and Type | Method | Description |
---|---|---|
static ProcedureName |
ProcedureName.qualify(java.lang.String current_schema,
java.lang.String proc_name) |
Returns a version of this procedure qualified to the given schema (unless
the schema is present).
|
Modifier and Type | Method | Description |
---|---|---|
void |
ProcedureManager.defineJavaProcedure(ProcedureName procedure_name,
java.lang.String java_specification,
TType return_type,
TType[] param_types,
java.lang.String username) |
Defines a Java stored procedure.
|
void |
ProcedureManager.deleteProcedure(ProcedureName procedure_name) |
Deletes the procedure with the given name, or generates an error if the
procedure doesn't exist.
|
TObject |
ProcedureManager.invokeProcedure(ProcedureName procedure_name,
TObject[] params) |
Invokes the procedure with the given name and the given parameters and
returns the procedure return value.
|
boolean |
ProcedureManager.procedureExists(ProcedureName procedure_name) |
Returns true if the procedure with the given name exists.
|
Copyright © 2018. All rights reserved.