Click or drag to resize
DataAccessAdapterCore.CallRetrievalStoredProcedure Method (String,DbParameter[], DataSet)
Calls the specified retrieval stored procedure in the database. Fills the specified DataSet. Will participate in the transaction if a transaction is in progress.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
public virtual bool CallRetrievalStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	DataSet dataSetToFill
)

Parameters

storedProcedureToCall
Type: System.String
Stored procedure to call
parameters
Type:System.Data.Common.DbParameter[]
array of parameters to specify
dataSetToFill
Type: System.Data.DataSet
DataSet to fill by the stored procedure

Return Value

Type: Boolean
true if succeeded, false otherwise

Implements

IDataAccessCore.CallRetrievalStoredProcedure(String,DbParameter[], DataSet)
See Also