Mediachase FileUploader.NET 1.9 Framework Help

SqlHelper.ExecuteXmlReader Method

Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection.

Overload List

Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection.

public static XmlReader ExecuteXmlReader(SqlConnection,CommandType,string);

Execute a SqlCommand (that returns a resultset) against the specified SqlConnection using the provided parameters.

public static XmlReader ExecuteXmlReader(SqlConnection,CommandType,string,params SqlParameter[]);

Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 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 ExecuteXmlReader(SqlConnection,string,params object[]);

Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction.

public static XmlReader ExecuteXmlReader(SqlTransaction,CommandType,string);

Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction using the provided parameters.

public static XmlReader ExecuteXmlReader(SqlTransaction,CommandType,string,params SqlParameter[]);

Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlTransaction 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 ExecuteXmlReader(SqlTransaction,string,params object[]);

See Also

SqlHelper Class | Mediachase.FileUploader Namespace