Uses of Class
com.mckoi.database.ProcedureName
-
Packages that use ProcedureName Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of ProcedureName in com.mckoi.database
Methods in com.mckoi.database that return ProcedureName 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).Methods in com.mckoi.database with parameters of type ProcedureName 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.
-