Click or drag to resize

DbDatabaseRunProcedure Method

Overload List
  NameDescription
Protected methodRunProcedure(String, String, IDataParameter, String)
Runs a stored procedure, returning an SqlResultSet containing the result of the stored procedure.
Protected methodRunProcedure(DbConnection, String, IDataParameter, Int32, String)
Runs a stored procedure, returning an integer indicating the return value of the stored procedure. Also returns the value of the RowsAffected aspect of the stored procedure that is returned by the ExecuteNonQuery method.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, String)
Runs a stored procedure, returning an SqlResultSet containing the result of the stored procedure.
Protected methodRunProcedure(String, String, IDataParameter, Int32, String)
Runs a stored procedure, returning an integer indicating the return value of the stored procedure. Also returns the value of the RowsAffected aspect of the stored procedure that is returned by the ExecuteNonQuery method.
Protected methodRunProcedure(String, String, IDataParameter, String, String)
Runs a stored procedure, returning a DataSet that contains the results of the stored procedure in a named table.
Protected methodRunProcedure(String, String, IDataParameter, String, String)
Runs a stored procedure, returning an ArrayList containing the specified fields from the result of the stored procedure. N.B. This method has been retained for backward compatibility. It is recommended that a strongly typed generic list is used instead of an ArrayList.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, String, String)
Runs a stored procedure, returning a DataSet that contains the results of the stored procedure in a named table.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, String, String)
Runs a stored procedure, returning an ArrayList containing the specified fields from the result of the stored procedure. N.B. This method has been retained for backward compatibility. It is recommended that a strongly typed generic list is used instead of an ArrayList.
Protected methodRunProcedure(String, String, IDataParameter, DataSet, String, String)
Takes an existing DataSet and fills the given table name with the results of the stored procedure.
Protected methodRunProcedure(String, String, IDataParameter, Int32, Int32, String)
Returns a populated DataTable from the stored procedure provided.
Protected methodRunProcedure(String, String, IDataParameter, String, String, String)
Runs a stored procedure, returning a DataView that contains the results of the stored procedure in a named table within a DataSet.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, DataSet, String, String)
Takes an existing DataSet and fills the given table name with the results of the stored procedure.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, Int32, Int32, String)
Returns a populated DataTable from the stored procedure provided.
Protected methodRunProcedure(DbConnection, String, String, IDataParameter, String, String, String)
Runs a stored procedure, returning a DataView that contains the results of the stored procedure in a named table within a DataSet.
Top
See Also