Execute a Command (that returns a resultset and takes no parameters).
Execute a Command (that returns a resultset and takes no parameters).
public static DataSet ExecuteDataSetTransactional(CommandType,string);
Execute a SqlCommand (that returns a resultset) against a Transaction using the provided parameters.
public static DataSet ExecuteDataSetTransactional(CommandType,string,params IDataParameter[]);
Execute a stored procedure via a Command (that returns a resultset and takes no parameters) against a Transaction.
public static DataSet ExecuteDataSetTransactional(string);
Execute a stored procedure via a Command (that returns a resultset) against a Transaction using the provided parameters.
public static DataSet ExecuteDataSetTransactional(string,params IDataParameter[]);
Execute a stored procedure via a Command (that returns a resultset) against a Transaction using the provided parameter values. This method will query the database to discover the parameters for the stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
public static DataSet ExecuteDataSetTransactional(string,params object[]);
GenericDataHelper Class | DotnetProject.Data Namespace