Mimer Data Provider

MimerCommand.ExecuteNonQuery Method 

Executes the current SQL statement using the current connection and returns the number of rows affected.

[Visual Basic]
Public Function ExecuteNonQuery() _
    Implements IDbCommand.ExecuteNonQuery As Integer
[C#]
public int ExecuteNonQuery();
[C++]
public: int ExecuteNonQuery();
[JScript]
public function ExecuteNonQuery(): int;

Return Value

Number of rows affected.

Implements

IDbCommand.ExecuteNonQuery

Exceptions

Exception TypeCondition
InvalidOperationExceptionThe Connection is not Open.
MimerExceptionA database server error occurred while executing the statement.
ArgumentOutOfRangeExceptionThe data value of a parameter value was too large or too small to be converted to the database type.
InvalidCastExceptionThe format of the value of one of the Parameters was invalid, or the application data type can not be converted to the target database type.

See Also

MimerCommand Class | Mimer.Data.Client Namespace