Forums Register Login

Java and Sybase nested stored procedures

+Pie Number of slices to send: Send
Hi!

I have nested Sybase stored procedures, the main procedure calls a helper stored proc.
The main procedure returns 2 result sets before calling the helper store proc and helper store proc returns 1 resultset. After the helper store proc is called, the main store proc returns 2 more resultset. When I run it using SQL client tool the main procedure(and it's helper) execute well and returns rows.

I need to call this store proc in a java code and display all the resultset in screen. I am using Statement:execute(<exec sp> to execute the store proc and then statement.getResultSet() to get each resultset. The loop is controlled by statement.getMoreResults() .

It displays the first 2 resultsets from main Store Proc. Then the control goes to helper store proc. It executes the helper store proc and displays the resultset from helper. But then it stops there and doesnot
come back to main store proc to execute the remaining resultset.

What I suspect is that, the statement object is getting overlaid when the call goes to helper proc. May be that Statement object maintains an internal list for Resultset and that list is over-written when helper proc is executed.

Any idea as to how to code to handle multiple nested resultset ?

~ RNS.



My Sybase stored procedure code looks like -
=======================================================================
create procedure main_proc
as

select getdate()
select @@servername

exec proc2

select myCol1, myCol2, myCol3
from mytable
select db_name()

go

===========================================================================
Sybase Code for proc2

create procedure proc2
as
begin
select @@version
end
go

GRANT EXECUTE...
EXEC sp_procxmode 'dbo.proc2,'unchained'
go
====================================================================

Code snippet :-
--------------------
do {
int iit=0;
rs=stmt.getResultSet();
if ( rs != null ) {
ResultSetMetaData rsd = rs.getMetaData();
int nocols = rsd.getColumnCount();
for (int i=1; i<=nocols; i++)
{
System.out.println(rsd.getColumnName(i)));
}
while (rs.next())
{
for (int i=1; i<=nocols; i++)
{
System.out.println(rs.getString(rsd.getColumnName(i));
}
}
}
} while (stmt.getMoreResults());
+Pie Number of slices to send: Send
Hi,

Welcome to JavaRanch!

We have a forum for JDBC and database questions here. I will move this topic there for you -- go see what people have to say!
You didn't tell me he was so big. Unlike this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 2416 times.
Similar Threads
Stored procedure which returns array
Retrieiving OUT parameters & return value from a Sybase Stored Procedure
getting ResultSet from Java Stored Procedure
Java and Sybase nested stored procedures
getting empty resultset
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 01:42:36.