Hi All
I am having oracle stored procedure which does not have any out parameter in it. I want to execute and need to take the output from that procedure and display it in UI using Java. I have googled but i am getting any sample codes to get out value when out parameter not defined in oracle stored procedure. Could you please help us to resolve this issue. is there any way to get the output in java.
Sample procedure:
CREATE OR REPLACE PROCEDURE PROC1
AS BEGIN
SELECT AMOUNT INTO amnt FROM INVOICE WHERE INVOICE_NR = invoicenr;
END;
Thanks
Krishnan