|
Answer» In HIBERNATE we can EXECUTE STORED procedures using code as below: [xml] <sql-query NAME=”getStudents” callable=”true”> <return alias=”st” class=”Student”> <return-property name=”std_id” column=”STD_ID”/> <return-property name=”s_name” column=”STD_NAME”/> <return-property name=”s_dept” column=”STD_DEPARTMENT”/> { ? = call selectStudents() } </return> </sql-query> [/xml] In hibernate we can execute stored procedures using code as below: [xml] <sql-query name=”getStudents” callable=”true”> <return alias=”st” class=”Student”> <return-property name=”std_id” column=”STD_ID”/> <return-property name=”s_name” column=”STD_NAME”/> <return-property name=”s_dept” column=”STD_DEPARTMENT”/> { ? = call selectStudents() } </return> </sql-query> [/xml]
|