Execute a Command (that returns a resultset) against the specified Transaction using the provided parameters.
Execute a Command (that returns a resultset) against the specified Transaction using the provided parameters.
public static XmlReader ExecuteXmlReaderTransactional(out IDbTransaction,CommandType,string);
Execute a stored procedure via a Command (that returns a resultset) against the specified Transaction using the provided parameters.
public static XmlReader ExecuteXmlReaderTransactional(out IDbTransaction,CommandType,string,params IDataParameter[]);
Execute a stored procedure via a Command (that returns a resultset) against the specified Transaction using the provided parameters.
public static XmlReader ExecuteXmlReaderTransactional(out IDbTransaction,string);
Execute a stored procedure via a Command (that returns a resultset) against the specified Transaction using the provided parameters.
public static XmlReader ExecuteXmlReaderTransactional(out IDbTransaction,string,params IDataParameter[]);
Execute a stored procedure via a Command (that returns a resultset) against the specified 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 XmlReader ExecuteXmlReaderTransactional(out IDbTransaction,string,params object[]);
GenericDataHelper Class | DotnetProject.Data Namespace