Dotnet-Project Framework documentation.

GenericDataHelper.ExecuteXmlReaderTransactional Method

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

Overload List

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[]);

See Also

GenericDataHelper Class | DotnetProject.Data Namespace