OdbcTransaction::Rollback Method ()
Rolls back a transaction from a pending state.
Assembly: System.Data (in System.Data.dll)
| Exception | Condition |
|---|---|
| Exception | An error occurred while trying to commit the transaction. |
| InvalidOperationException | The transaction has already been committed or rolled back. -or- The connection is broken. |
The transaction can be rolled back only from a pending state (after BeginTransaction has been called, but before Commit is called). The transaction will be rolled back in the event it is disposed before Commit or Rollback is called.
The following example creates an OdbcConnection and an OdbcTransaction. It also demonstrates how to use the BeginTransaction, Commit, and Rollback methods.
Available since 1.1