• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

IBATIS - PROCEDURE -RESULT SET - OUT PARAM

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am calling a procedure from Ibatis where the procedure will have an output parameter and a select query.

Now how can I get my select query results as well as output parameter in my java layer. My procedure looks as below.

create procedure test(count integer out)
{
select name,no from employee;
set count = select count(*) from employee;
}


Thanks
Shiva.
reply
    Bookmark Topic Watch Topic
  • New Topic