Executes a proc in the GPUdb Node.js proc server.
Input Parameter Description
Name | Type | Description |
---|---|---|
name | string | Name of the proc to execute. |
params | map of strings | A map containing string parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. |
bin_params | map of bytes | A map containing binary parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. |
options | map of strings | Optional parameters. Default value is an empty map ( {} ). |
Output Parameter Description
Name | Type | Description |
---|---|---|
results | map of strings | A map containing string results returned from the proc. Each key/value pair specifies the name of a result and its value. |
bin_results | map of bytes | A map containing binary results returned from the proc. Each key/value pair specifies the name of a result and its value. |