Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Why not simply pass it to a class field in the enclosing class? – Hovercraft Full Of Eels Jul 27 '11 at 1:18

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.