Retrieval Procedues v3.5

Posts   
 
    
Seddy24
User
Posts: 3
Joined: 19-Apr-2012
# Posted on: 19-Apr-2012 23:40:01   

I am currently in the process of upgrading from 2.6 to 3.5. I am new to using LLBLGen so please be patient if I'm not making any sense.

When generating the code for my stored procedures I noticed instead of DataSet's being used version 3.5 uses DataTables.

Also each constructor now has an addition parameter (ref System.Object parameterName) which is causing all of the calls to this class to say.

"No overload for method 'MethodName' takes 1 arguments.

Any help or guidance would be appreciated.

Thanks,

Dan

daelmo avatar
daelmo
Support Team
Posts: 8245
Joined: 28-Nov-2005
# Posted on: 20-Apr-2012 06:19:37   

Seddy24 wrote:

When generating the code for my stored procedures I noticed instead of DataSet's being used version 3.5 uses DataTables.

Hi Dan. If the SP return more than one resulset, the SP call will return a DataSet containing inside the resulsets as DataTables. If the SP only returns one resulset, then the SP call return a DataTable.

Seddy24 wrote:

Also each constructor now has an addition parameter (ref System.Object parameterName) which is causing all of the calls to this class to say.

That should not be the case unless your SP has an output parameter. Please check your SP signature at DB.

David Elizondo | LLBLGen Support Team