Dotnet-Project Framework documentation.

GenericDataHelper.FillDatasetTransactional Method (CommandType, String, DataSet, String[], IDataParameter[])

Execute a Command (that returns a resultset) against a Transaction using the provided parameters.

public static void FillDatasetTransactional(
   CommandType commandType,
   string commandText,
   DataSet dataSet,
   string[] tableNames,
   params IDataParameter[] commandParameters
);

Parameters

commandType
The CommandType (stored procedure, text, etc.)
commandText
The stored procedure name or T-SQL command
dataSet
A dataset wich will contain the resultset generated by the command
tableNames
This array will be used to create table mappings allowing the DataTables to be referenced by a user defined name (probably the actual table name)
commandParameters
An array of Paramters used to execute the command

Example

FillDataset(CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, new SqlParameter("@prodid", 24));

See Also

GenericDataHelper Class | DotnetProject.Data Namespace | GenericDataHelper.FillDatasetTransactional Overload List