Skip to main content

◆ showSqlProc() [1/2]

ShowSqlProcResponse kinetica.Kinetica.showSqlProc (ShowSqlProcRequestrequest_)
inline

Shows information about SQL procedures, including the full definition of each requested procedure.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 61542 of file KineticaFunctions.cs.

◆ showSqlProc() [2/2]

ShowSqlProcResponse kinetica.Kinetica.showSqlProc (stringprocedure_name = "",
IDictionary< string, string >options = null )
inline

Shows information about SQL procedures, including the full definition of each requested procedure.

Parameters
procedure_nameName of the procedure for which to retrieve the information. If blank, then information about all procedures is returned. The default value is ”.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE, no error will be returned if the requested procedure does not exist. If FALSE, an error will be returned if the requested procedure does not exist. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 61605 of file KineticaFunctions.cs.

◆ ShowSqlProcAsync() [1/2]

async System.Threading.Tasks.Task< ShowSqlProcResponse > kinetica.Kinetica.ShowSqlProcAsync (ShowSqlProcRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information about SQL procedures, including the full definition of each requested procedure.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 61558 of file KineticaFunctions.cs.

◆ ShowSqlProcAsync() [2/2]

async System.Threading.Tasks.Task< ShowSqlProcResponse > kinetica.Kinetica.ShowSqlProcAsync (stringprocedure_name = "",
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information about SQL procedures, including the full definition of each requested procedure.

(async)

Parameters
procedure_nameName of the procedure for which to retrieve the information. If blank, then information about all procedures is returned. The default value is ”.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE, no error will be returned if the requested procedure does not exist. If FALSE, an error will be returned if the requested procedure does not exist. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 61652 of file KineticaFunctions.cs.