Hi all,
I am using Hibernate 2.1.2 version.
I want to know how to map the registered output parameter returned by a a SP using Hibernate
I am using
Query query=createSQLQuery(QUERY, "ALIAS NAME", TempVO.class);
where in QUERY is a SQL query that calls a SP, and i am mapping the results obtained to a VO.
Now if the SP returns nothing i,e if it contains only update and save logic and returns only registered output parameter. Then how do I get the returned value from the SP?
Database- SQL Server 2000
|