SqlHelper..::..ExecuteNonQueryAsync Method
Overload List
| Name | Description | |
|---|---|---|
| 
                         | 
                      ExecuteNonQueryAsync(String, CommandType, String) | 
                         
   Execute a SqlCommand (that returns no resultset and takes no parameters) against the database specified in
   the connection string
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(String, CommandType, String, array<SqlParameter>[]()[][]) | 
                         
   Execute a SqlCommand (that returns no resultset) against the database specified in the connection string
   using the provided parameters
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(String, String, array<Object>[]()[][]) | 
                         
   Execute a stored procedure via a SqlCommand (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.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlConnection, CommandType, String) | 
                         
   Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlConnection.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlConnection, CommandType, String, array<SqlParameter>[]()[][]) | 
                         
   Execute a SqlCommand (that returns no resultset) against the specified SqlConnection
   using the provided parameters.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlConnection, String, array<Object>[]()[][]) | 
                         
   Execute a stored procedure via a SqlCommand (that returns no 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.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlTransaction, CommandType, String) | 
                         
   Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlTransaction.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlTransaction, CommandType, String, array<SqlParameter>[]()[][]) | 
                         
   Execute a SqlCommand (that returns no resultset) against the specified SqlTransaction
   using the provided parameters.
    
                       | 
                    
| 
                         | 
                      ExecuteNonQueryAsync(SqlTransaction, String, array<Object>[]()[][]) | 
                         
   Execute a stored procedure via a SqlCommand (that returns no 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.
    
                       |