Version:

execute_procΒΆ

GPUdb.execute_proc( name = None, params = None, bin_params = None, options = {}
                    )

Executes a proc in the GPUdb Node.js proc server.

Input Parameter Description

Name Type Description
name str Name of the proc to execute.
params dict of str 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 dict of str A map containing binary parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value.
options dict of str Optional parameters. Default value is an empty dict ( {} ).

Output Parameter Description

Name Type Description
results dict of str A map containing string results returned from the proc. Each key/value pair specifies the name of a result and its value.
bin_results dict of str A map containing binary results returned from the proc. Each key/value pair specifies the name of a result and its value.