Open b-tsao opened 3 months ago
For those coming across with the same issue, there is a potential workaround.
Here's a working example of a C built-in stored procedure
CREATE PROCEDURE <sp_name>(<parameters>)
The sp_name is the desired stored procedure to be invoked and the parameters would be the IN/OUT parameters of the stored procedure
The CREATE PROCEDURE <sp_name>(<parameters>)
can be kept to a minimum (there is no need for the rest of the DDL).
Adding LANGUAGE could prevent the execution of the stored procedure due to a check, simply omit it.
Description of the feature or enhancement
Data studio had the feature to execute stored procedures from catalog and read OUTPUT parameter values. In developer extension currently attempting to execute a stored procedure via
CALL ...
allows inputing host variable data types and values but they're all considered INPUT variables even though the stored procedure being invoked contains OUTPUT variables.