showSqlProc
Shows information about SQL procedures, including the full definition of each requested procedure.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.showSqlProc
public ShowSqlProcResponse showSqlProc(String procedureName, Map<String, String> options) throws GPUdbException Shows information about SQL procedures, including the full definition of each requested procedure.Parameters:procedureName- Name of the procedure for which to retrieve the information. If blank, then information about all procedures is returned. The default value is ”.options- Optional parameters.NO_ERROR_IF_NOT_EXISTS: IfTRUE, no error will be returned if the requested procedure does not exist. IfFALSE, an error will be returned if the requested procedure does not exist. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.