I just started learning hibernate last night and its rather fun. I am some trouble calling a stored procedure as a sql-query with hibernate. I have attached the source and t
According to the documentation, the procedure must return a result set and should be called like this:
{ ? = call procedureName() }
So try the following instead:
{ ? = call getRecords }