I am trying to call a stored procedure in Oracle via ODBC which has 2 output parameters:
MyProc (IN p1, IN p2, IN p3, OUT o1, OUT o2)
o1 is a NUMBER, o2 is a VARCHAR2 p1,p2,p3 are all NUMBER
I already call stored procedures with only IN parameters (SQL CALL MySimpleProc (a,b,c);) This is working fine. But I can't get it work with output parameters 😞