Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesPetapocoHelper ExecuteReader problemPetapocoHelper ExecuteReader problem
Previous
 
Next
New Post
3/12/2018 7:29 PM
 

Hi everyone.

I'm developing .cs code to get data from a Stored Procedure and store it to a List but i'm having trouble getting all datasets to the List.

 

The SP:

ALTER PROCEDURE [_testSchm].[_test_sp]

    @paramINint int,   

    @paramINnvarchar nvarchar(max),   

    @paramOUTint int OUTPUT,   

    @paramOUTnvarchar nvarchar(max) OUTPUT

AS   

    set @paramOUTint = @paramINint * 33

    set @paramOUTnvarchar = REVERSE(@paramINnvarchar)

    select 666 as ResultSet1

    select 999 as ResultSet1

    return 401

 

 

The class i defined to fill the list in the .cs code:

 

    public class readerSQL

    {

        public int paramOUTint { get; set; } //esto es de prueba y si, se devuelve a cliente con el valor null porque el SP no lo rellena a su llamada

        public string paramOUTnvarchar { get; set; }

        public string JSON { get; set; }

        public int ResultSet1 { get; set; }

        public int ReturnValue { get; set; }

    }

 

The .cs code:

 

                var paramINint = 3;

                var paramINnvarchar = "carlos";

                var paramOUTint = 0;

                var paramOUTnvarchar = "";

                object[] testJSONParameters = new object[] { paramINint, paramINnvarchar, paramOUTint, paramOUTnvarchar }; 

                IDataReader petaReaderTest = PetaPocoHelper.ExecuteReader( 

                    DataProvider.Instance().ConnectionString,

                    CommandType.StoredProcedure,

                    "_testSchm._test_sp",

                    testJSONParameters

                );

                var ReturnJSON = CBO.FillCollection<readerSQL>(petaReaderTest);

 

The SP:

ALTER PROCEDURE [_testSchm].[_test_sp]

    @paramINint int,   

    @paramINnvarchar nvarchar(max),   

    @paramOUTint int OUTPUT,   

    @paramOUTnvarchar nvarchar(max) OUTPUT

AS   

    set @paramOUTint = @paramINint * 33

    set @paramOUTnvarchar = REVERSE(@paramINnvarchar)

    select 666 as ResultSet1

    select 999 as ResultSet1

    return 401

 

 

 ReturnJSON returns only this:


<ArrayOfreaderSQL>
<readerSQL>
<JSON i:nil="true"/>
<ResultSet1>666</ResultSet1>
<ReturnValue>0</ReturnValue>
<paramOUTint>0</paramOUTint>
<paramOUTnvarchar i:nil="true"/>
</readerSQL>

</ArrayOfreaderSQL>

 

What it should return (call at SQL management studio):

ColName : ResultSet

Value :         666

 

ColName : ResultSet

Value :         999

 

ColName : @paramOUTint   |||    @paramOUTnvarchar

Value :                      99             |||                solrac

 

ColName : Return Value

Value :              401

 

 
New Post
3/14/2018 5:09 PM
 
I can't edit the post, here you can see it more clean:
https://stackoverflow.com/questions/4...
 
New Post
3/14/2018 5:09 PM
 
I can't edit the post, here you can see it more clean:
https://stackoverflow.com/questions/4...
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesPetapocoHelper ExecuteReader problemPetapocoHelper ExecuteReader problem


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out