DataAccessAdapterCoreRollback Method |
Name | Description | |
---|---|---|
Rollback |
Rolls back the transaction in action. It will end all database activity, since commiting a transaction is finalizing it. After
calling Commit or Rollback, the ITransaction implementing class will reset itself.
If in a COM+ transaction: it will flag the context to abort. It will NOT set the done bit.
| |
Rollback(String) |
Rolls back the transaction in action to the savepoint with the name savepointName. No internal objects are being reset when this method is called,
so call this Rollback overload only to roll back to a savepoint. To roll back a complete transaction, call Rollback() without specifying a savepoint
name. Create a savepoint by calling SaveTransaction(savePointName)
|