QuickObjects.DBLibrary Send comments on this topic.
RunSPReturnDataset Method
See Also 
Akal.QuickObjects.DBLibrary Namespace > DatabaseObjectSQL Class : RunSPReturnDataset Method

RunSPReturnDataset

This method runs a Stored procedure and returns a dataset.

Parameters:
Description
procNameSQL Stored procdeure name to be executed.
parameterValuesAn array of objects to be assigned as the input values of the stored procedure.

Returns:
Type
System.Data.DataSet

Overload List

OverloadDescription
RunSPReturnDataset(String,IDataParameter[])RunSPReturnDataset

This method runs a Stored procedure and returns a dataset.

Parameters:
Description
procNameSQL Stored procdeure name to be executed.
parameterValuesAn array of objects to be assigned as the input values of the stored procedure.

Returns:
Type
System.Data.DataSet
 

RunSPReturnDataset(String,String,IDataParameter[])RunSPReturnDataset

This method runs a Stored procedure and returns a dataset.

Parameters:
Description
System.StringSQL Stored procdeure name to be executed.
System.StringTable name that will contain the result set in the DataSet.
System.Data.IDataParameterAn array of objects to be assigned as the input values of the stored procedure.

Returns:
Type
System.Data.DataSet

 
RunSPReturnDataset(String,DataSet,String,IDataParameter[])RunSPReturnDataset

This method runs a Stored procedure and returns a dataset.

Parameters:
Description
System.StringSQL Stored procdeure name to be executed.
System.Data.DataSetDataSet object to fill the result set in.
System.StringTable name that will contain the result set in the DataSet.
System.Data.IDataParameterAn array of objects to be assigned as the input values of the stored procedure.

Returns:
Type
System.Data.DataSet

 

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also