File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JDBC and the fly likes How to return a cursor in DB2 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "How to return a cursor in DB2" Watch "How to return a cursor in DB2" New topic
Author

How to return a cursor in DB2

Aravind Bhat
Ranch Hand

Joined: Jun 16, 2006
Posts: 32
Hi guys ,

I want to return the cursor in db2 to retrieve the resultset from
my java application .Keeping the cursor open dosen't help and the resultset always returns a null though the procedure runs fine from the command line. Any ideas .

Regards,
Av~

CallableStatement stmt3 = HibernateApp.getHibernateSession().connection().prepareCall("{call answers_select_id( ? )}");
stmt3.setString(1,20);
stmt3.execute();
ResultSet rs1 = stmt3.getResultSet();
System.out.println("rs1 " + rs1); --> returns null
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to return a cursor in DB2
 
Similar Threads
JDBC Help figuring it out
intersolv JDBC driver for DB2 on OS/390
java Date problem
Resultset returns null from a srored procedure in db2
multiple processes... only want one