Hello !
I searched everywhere but I didn't find an answer...
I want to call a Stored Procedure but it doesn't return anything. It is just a simple procedure that upgrades a table for a given ID :
Code:
CREATE OR REPLACE
PROCEDURE MY_STORE_PROCEDURE(id NUMBER) IS
BEGIN
UPDATE my_table...
END;
Is it possible to call such a procedure with hibernate ?
I think it should be something like :
Code:
getSession().createSQLQuery("BEGIN MY_STORE_PROCEDURE(55); END;")...
But I can't call "executeUpdate" or something like that...
Do you have an idea ?
Thanks in advance.