I was looking at this example Oracle function from Hibernate. It tells in the solution that:
int result = call.getInt(1); // propagate this back to enclosing class
Can anyone point me to how this can be done?
|
I was looking at this example Oracle function from Hibernate. It tells in the solution that:
Can anyone point me to how this can be done? |
||||
|
|
This is talking about output parameters of Stored procedure. The link you shown, is actually calling a Stored procedure and getting the output parameter from the PrepareCall, after its been executed successfully. For this, you need to understand how Output parameters work in SPs. |
|||
|
|