Hi
I'm using LLBLGen Pro version 3.5 Final (January 17th, 2013) with SQL Server 2008 R2
When retrieving the following stored procedure, I end up with 1 resultset (as expected) that I can reverse into a TypedView
CREATE PROCEDURE [dbo].[test]
@filter_codes VARCHAR(4000)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
SELECT * FROM discipline
END
However, if I modify the size of the parameter to 4001 (or higher), I end up with no resultsets.
Any help appreciated.
Matt