Man illustrationFlower illustration

Call stored procedure

Estimated reading: 2 minutes 296 views

Call stored procedure activity executes a desired stored procedure in the database and returns the result.

Usage examples can be found at this link.


*Connection
name
The defined connection name before is chosen from the dropdown.
Param1The value to be assigned to the first parameter is written.
Param2The value to be assigned to the second parameter is written.
Param3The value to be assigned to the third parameter is written.
Param4The value to be assigned to the fourth parameter is written.
Param5The value to be assigned to the fifth parameter is written.
ParametersIf it is desired to put multiple parameters, parameters are written.
*Stored procedure nameThe stored procedure name is written. The question marks should be added as many as the number of parameters to be used.
*Result dataset nameThe reference name is given to the dataset which will create in this field.
Note: * Fields selected with are required, others are optional.

You can use the Connection name as shown in the example.

robustaConnection

You can use the Param1 as shown in the example.

[‘1’, ‘STRING’, ‘in’, ‘2314589’]

You can use the Param2 as shown in the example.

[‘2’, ‘STRING’, ‘in’, ‘${companyName}’]

You can use the Param3 as shown in the example.

[‘3’, ‘STRING’, ‘in’, ‘${companyName}’]

You can use the Param4 as shown in the example.

[‘4’, ‘STRING’, ‘in’, ‘${companyName}’]

You can use the Param5 as shown in the example.

[‘5’, ‘STRING’, ‘in’, ‘${companyName}’]

You can use the Parameters as shown in the example.

[[‘1’, ‘STRING’, ‘in’, ‘2314589’], [‘2’, ‘STRING’, ‘in’, ‘${companyName}’]]

You can use the Stored procedure name as shown in the example.

CALL robusta.getCustomerInfo(?,?);

You can use the Query sql as shown in the example.

employeesDataset
Share this Doc

Call stored procedure

Or copy link

CONTENTS
Chat Icon Close Icon