Execute sybase stored proc from hibernate
- by Padmanabh
I am having issues with executing a simple sybase stored proc from hibernate. The procedure takes some input and returns one record. I tried with the following tag in hibernate mappings file and java code.
<hibernate-mapping>
<sql-query name="sybaseproc" callable="true">
<return class="Myentity">
…