Package | Description |
---|---|
com.mckoi.database |
The core database classes for Mckoi.
|
Modifier and Type | Method and Description |
---|---|
static ProcedureName |
ProcedureName.qualify(String current_schema,
String proc_name)
Returns a version of this procedure qualified to the given schema (unless
the schema is present).
|
Modifier and Type | Method and Description |
---|---|
void |
ProcedureManager.defineJavaProcedure(ProcedureName procedure_name,
String java_specification,
TType return_type,
TType[] param_types,
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 © 2015. All rights reserved.