Forum Discussion
Hi John:
For which database? You can do quite a bit in the SQL Execute snap – SELECT, CREATE, even invoke a stored function (well, at least for Oracle). Oracle has the notion of IN (parameters passed in) and OUT parameters (values returned from the procedure), and you can even define a stored function which returns a value and also a result in an OUT parameter – don’t know that this is a common pattern though.
function f1(x_out OUT varchar2) return number AS
BEGIN
x_out := 'OK';
RETURN 1;
END f1;
We do support stored procedures for most of our databases, but to what extent depends on the db.
- jcornelius5 years agoNew Contributor III
we are using JDBC to connect to Pervasive db
the SQL Execute will not connect - nickshore5 years agoNew Contributor II
Hi,
Just jumping on this thread as we have a requirement to execute an Oracle stored procedure that has a IN/OUT parameter set which I know isn’t support via the Stored Procedure snap. Are you saying this should be achievable through the Oracle Execute snap?
Thanks
Nick
- mbowen5 years agoEmployee
Hi Nick:
Jumping in on thread is perfectly fine. The Oracle Execute snap can’t invoke stored procedures. Can you tell me more about your requirement and how the Stored Procedure snap can’t handle it ?
- Anendu4 years agoNew Contributor II
Hello Mbowen,
I am currently running Stored Procedure against SQL database using JDBC execute SNAP and its returning me on only the execution status .
DB Version :- SQL server 2017
Can you please help, How to run stored procedure in JDBC SNAP?
Thanks,
Anendu