Overload List
Name | Description | |
---|---|---|
ExecuteNonQueryTypedParams(IDbCommand, DataRow) |
Execute a stored procedure via an IDbCommand (that returns no resultset)
against the database specified in the connection string using the
dataRow column values as the stored procedure's parameters values.
This method will assign the parameter values based on row values.
| |
ExecuteNonQueryTypedParams(IDbConnection, String, DataRow) |
Execute a stored procedure via an IDbCommand (that returns no resultset) against the specified IDbConnection
using the dataRow column values as the stored procedure's parameters 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 row values.
| |
ExecuteNonQueryTypedParams(IDbTransaction, String, DataRow) |
Execute a stored procedure via an IDbCommand (that returns no resultset) against the specified
IDbTransaction using the dataRow column values as the stored procedure's parameters 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 row values.
| |
ExecuteNonQueryTypedParams(String, String, DataRow) |
Execute a stored procedure via an IDbCommand (that returns no resultset) against the database specified in
the connection string using the dataRow column values as the stored procedure's parameters 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 row values.
|