Overload List
| Name | Description | |
|---|---|---|
| ExecuteNonQuery(IDbCommand) | 
            Execute an IDbCommand (that returns no resultset) against the database
              | |
| ExecuteNonQuery(IDbConnection, CommandType, String) | 
            Execute an IDbCommand (that returns no resultset and takes no parameters) against the provided IDbConnection. 
              | |
| ExecuteNonQuery(IDbConnection, String, array<Object>[]()[][]) | 
            Execute a stored procedure via an IDbCommand (that returns no resultset) against the specified IDbConnection 
            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.
              | |
| ExecuteNonQuery(IDbTransaction, CommandType, String) | 
            Execute an IDbCommand (that returns no resultset and takes no parameters) against the provided IDbTransaction. 
              | |
| ExecuteNonQuery(IDbTransaction, String, array<Object>[]()[][]) | 
            Execute a stored procedure via an IDbCommand (that returns no resultset) against the specified 
            IDbTransaction 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.
              | |
| ExecuteNonQuery(String, CommandType, String) | 
            Execute an IDbCommand (that returns no resultset and takes no parameters) against the database specified in 
            the connection string
              | |
| ExecuteNonQuery(String, String, array<Object>[]()[][]) | 
            Execute a stored procedure via an IDbCommand (that returns no resultset) against the database specified in 
            the connection string 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.
              | |
| ExecuteNonQuery(IDbConnection, CommandType, String, array<IDataParameter>[]()[][]) | 
            Execute an IDbCommand (that returns no resultset) against the specified IDbConnection 
            using the provided parameters.
              | |
| ExecuteNonQuery(IDbTransaction, CommandType, String, array<IDataParameter>[]()[][]) | 
            Execute an IDbCommand (that returns no resultset) against the specified IDbTransaction
            using the provided parameters.
              | |
| ExecuteNonQuery(String, CommandType, String, array<IDataParameter>[]()[][]) | 
            Execute an IDbCommand (that returns no resultset) against the database specified in the connection string 
            using the provided parameters
              |