I have an Oracle Editionalble Function (that I cannot change) which I need to call from Hibernate.
CREATE OR REPLACE EDITIONABLE FUNCTION
"SCHEMA"."FUNCTION_NAME"
(
var1 IN CHAR DEFAULT NULL ,
var2 IN CHAR DEFAULT NULL ,
var3 OUT CHAR
)
RETURN NUMBER
AS
...
END;
Unfortunately, I have no idea how to do this. I saw a couple of posts on here about Session.doWork(), but I couldn't figure out how to make that work here.