Hi,
I am calling a procedure from ibatis layer, where the procedure returns a
result set ( as normal select ) and an output parameter.
My procedure will be as below:
procedure test(count integer out)
{
select name,no from employee;
set count=select count(*) from employee;
}
Could you plz help me in how to achieve this throuh Ibatis? Also how can I
read that data in Java layer?
Thanks
Shiva.
--
View this message in context:
http://www.nabble.com/IBATI---PROCEDURE---RESULT-SET---OUT-PARAM-tp19455910p19455910.html
Sent from the iBATIS - User - Java mailing list archive at Nabble.com.