Answered Questions

  • Execute Stored procedure in Hibernate

    How to invoke a stored procedure in Hibernate and pass in a parameter?I have { ? = call myservice.TEST_PROC3( ? ) }While I can get stored proc output if there is no input to TEST_PROC3, e.g. call myservice.TEST_PROC3( )I don't know how to code in Java to pass in the parameter required in my case with:call myservice.TEST_PROC3( ? )Can anyone show me how to make such call in Java?Thanks