How to call a stored procedure using a ref cursor on oracle with squirrel

Posted by rapdum on Stack Overflow See other posts from Stack Overflow or by rapdum
Published on 2010-04-14T15:10:36Z Indexed on 2010/04/14 15:13 UTC
Read the original article Hit count: 502

Filed under:
|
|

Hello,

I'm trying to do the same request i'm using in Toad

(the store proc signature is two varchar2 parameter and one REF CURSOR parameter)

Here is what I do with Toad

variable myCursor refcursor;
EXEC myproc('param1','param2',:myCursor );
print myCursor;

I don't know how to write this with Squirrel and I have to use Squirrel.

thanks a lot for your response

Raphaël

© Stack Overflow or respective owner

Related posts about ref-cursor

Related posts about squirrel-sql