Go Back   CodingForums.com > :: Server side development > Other server side languages/ issues

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rating: Thread Rating: 5 votes, 2.40 average.
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-09-2002, 08:15 PM   PM User | #1
vijk2001
New Coder

 
Join Date: Aug 2002
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
vijk2001 is an unknown quantity at this point
Callable Statement-JAVA/JDBC

LATEST CODE
========================================================================
Stored procedure : CREATE_fix_link
Number of params : CREATE PROCEDURE CREATE_fix_link (.......there are 34 params ...of which 33 are input params and last one 34th is varchar output)--->
========================================================================

JAVA-- (What is wrong as i get JZ0R2: No result set for this query )
========================================================================
// Estabilish a connection to databse and make a connection object...Connection connection =......
// Prepare the callable Statement to construct the call to SP
CallableStatement cstmt=connection.prepareCall("{?=call CREATE_fix_link(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?.?,?,?,?,?,?,?,?)}");
// NOW THERE ARE 34 ?'s for all i/p plus o/p param..
cstmt.registerOutParameter(1,Types.VARCHAR); // for return type.
cstmt.registerOutParameter(35,Types.VARCHAR);// for last o/p param
cstmt.setString(2,LinkName);........
// these are the names of the params defined in SP
....................................................
....................................................
cstmt.setString(34,LinkExchGroups);

// Now Call the stored procedure
ResultSet results=cstmt.executeQuery();
while (results.next())

{
String rslt=results.getString(35);
}

// free connection
..................

COMPILE FINE BUT ON CLICKING SUBMIT BUTTON ON GUI WHICH ONVOKES THIS SERVLET WHICH CONTAINS THIS JAVA CODE CALLING "SP"

JZ0R2: No result set for this query..
I am so frustrated ..pls help me out here!!!!!
__________________
vijay...life is awesome!
vijk2001 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:23 PM.


Advertisement
Log in to turn off these ads.