Skip to main content
I am facing problems while executing parameterised stored procedure using sql executor. Error log prints the error statement with parameter values, and when I use the same statement to execute directly in oracle, it runs properly. 
Hi,

 

 

have you tried somthing like this?

 

 

begin

 

    my_stored_proc(

 

        proc_param_a => '@Value(my_attribute_a)',

 

        proc_param_b => '@Value(my_attribute_b)'

 

    );

 

end;

 

 

If that still does not work, consider posting more details.

 

 

David

Reply