GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::showSqlProc. More...
#include <gpudb/protocol/show_sql_proc.h>
Public Member Functions | |
ShowSqlProcRequest () | |
Constructs a ShowSqlProcRequest object with default parameters. More... | |
ShowSqlProcRequest (const std::string &procedureName_, const std::map< std::string, std::string > &options_) | |
Constructs a ShowSqlProcRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | procedureName |
Name of the procedure for which to retrieve the information. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::showSqlProc.
Shows information about SQL procedures, including the full definition of each requested procedure.
Definition at line 19 of file show_sql_proc.h.
|
inline |
Constructs a ShowSqlProcRequest object with default parameters.
Definition at line 24 of file show_sql_proc.h.
|
inline |
Constructs a ShowSqlProcRequest object with the specified parameters.
[in] | procedureName_ | Name of the procedure for which to retrieve the information. If blank, then information about all procedures is returned. The default value is ''. |
[in] | options_ | Optional parameters.
|
Definition at line 62 of file show_sql_proc.h.
std::map<std::string, std::string> gpudb::ShowSqlProcRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 95 of file show_sql_proc.h.
std::string gpudb::ShowSqlProcRequest::procedureName |
Name of the procedure for which to retrieve the information.
If blank, then information about all procedures is returned. The default value is ''.
Definition at line 73 of file show_sql_proc.h.