Click or drag to resize
ITransactionable Interface
The interface that should be implemented by database objects that support transactions.

Namespace: VirtualRadar.Interface.Database
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface ITransactionable

The ITransactionable type exposes the following members.

Methods
  NameDescription
Public methodEndTransaction
Ends a transaction. Ending a nested transaction has no effect.
Public methodRollbackTransaction
Rolls back a transaction. Rolling back a nested transaction rolls back all transactions.
Public methodStartTransaction
Begins a new transaction. Nesting transactions is allowed.
Top
See Also