Hi Guys,
we are working on multiple resultset example. Normally in DB editor i am getting multiple records;
EXECUTE [dbo].[sp_student] @i_status = N'1'
GO
/* Result :
"
1 row(s) returned
1 row(s) returned
1 row(s) returned
1 row(s) returned
(219 ms)" */
but in PI we got only the first row. (JDBC response DT structure occurence is 1...unbounded.)
My reference was this blog; JDBC stored procedure returning multiple resultsets
Thank you in advance
PM