How to access multiple dataset using dbfit?

48 Views Asked by At

My procedure is returning 3 dataset? For DB testing we are using DBFit. How Can i retrieve all dataset?

Using this to get first dataset

!|Store Query|CALL `USP_dbfit_tes`()|outtable|
------------
!|Query|<<outtable|

Sample proc

CREATE PROCEDURE `USP_dbfit_tes`()
BEGIN
select 1;
select 2;
select 3;
END
0

There are 0 best solutions below