Click or drag to resize

DbDatabaseRunQuery Method

Overload List
  NameDescription
Protected methodRunQuery(String, String, IDataParameter, String)
Runs a query, returning an SqlResultSet containing the result of the query.
Protected methodRunQuery(DbConnection, String, IDataParameter, Int32, String)
Runs a query, 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 methodRunQuery(DbConnection, String, String, IDataParameter, String)
Runs a query, returning an SqlResultSet containing the result of the query.
Protected methodRunQuery(String, String, IDataParameter, DataTable, String)
Takes an existing DataTable and fills it with the results of the query.
Protected methodRunQuery(String, String, IDataParameter, Int32, String)
Runs a query, 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 methodRunQuery(String, String, IDataParameter, String, String)
Runs a query, returning a DataSet that contains the results of the query in a named table.
Protected methodRunQuery(String, String, IDataParameter, String, String)
Runs a stored procedure, returning an ArrayList containing the specified fields from the result of the query. 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 methodRunQuery(DbConnection, String, String, IDataParameter, DataTable, String)
Takes an existing DataTable and fills it with the results of the query.
Protected methodRunQuery(DbConnection, String, String, IDataParameter, String, String)
Runs a query, returning a DataSet that contains the results of the query in a named table.
Protected methodRunQuery(DbConnection, String, String, IDataParameter, String, String)
Runs a stored procedure, returning an ArrayList containing the specified fields from the result of the query. 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 methodRunQuery(String, String, IDataParameter, DataSet, String, String)
Takes an existing DataSet and fills the given table name with the results of the query.
Protected methodRunQuery(String, String, IDataParameter, Int32, Int32, String)
Returns a populated DataTable from the query provided.
Protected methodRunQuery(String, String, IDataParameter, String, String, String)
Runs a query, returning a DataView that contains the results of the query in a named table within a DataSet.
Protected methodRunQuery(DbConnection, String, String, IDataParameter, DataSet, String, String)
Takes an existing DataSet and fills the given table name with the results of the query.
Protected methodRunQuery(DbConnection, String, String, IDataParameter, Int32, Int32, String)
Returns a populated DataTable from the query provided.
Protected methodRunQuery(DbConnection, String, String, IDataParameter, String, String, String)
Runs a query, returning a DataView that contains the results of the query in a named table within a DataSet.
Top
See Also