Executes an SQL statement against the Connection object of a .NET Framework data provider, and returns the number of rows affected.
The number of rows affected.
You can use the IDbCommand.ExecuteNonQuery to perform catalog operations (for example, querying the structure of a database or creating database objects such as tables), or to change the data in a database without using a System.Data.DataSet by executing UPDATE, INSERT, or DELETE statements.
Although the IDbCommand.ExecuteNonQuery does not return any rows, any output parameters or return values mapped to parameters are populated with data.
For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1.