Stored Procedures with Multiple Result Sets
Posted: Fri Nov 11, 2011 3:53 am
Hi,
We have a number of reports which need to be based on stored procedures that return multiple results sets i.e.
Can you please advise on how we may achieve this using the Stimulsoft Designer as at present only the first result set (TableA) is available.
Regards,
Colin
We have a number of reports which need to be based on stored procedures that return multiple results sets i.e.
Code: Select all
CREATE PROCEDURE [dbo].[spxMultipleResultSets]
@intID INT = NULL
AS
BEGIN
SELECT
ta.*
FROM
[TableA] AS ta
SELECT
tb.*
FROM
[TableB] AS tb
END
Regards,
Colin