IDbTransaction Interface

Represents a transaction to be performed at a data source.

Namespace:  Microsoft.ReportingServices.DataProcessing
Assemblies:   Microsoft.ReportingServices.Interfaces (in Microsoft.ReportingServices.Interfaces.dll)
  Microsoft.ReportingServices.SharePoint.UI.WebParts (in Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)

Syntax

'Declaration
Public Interface IDbTransaction _
    Inherits IDisposable
'Usage
Dim instance As IDbTransaction
public interface IDbTransaction : IDisposable
public interface class IDbTransaction : IDisposable
type IDbTransaction =  
    interface 
        interface IDisposable 
    end
public interface IDbTransaction extends IDisposable

The IDbTransaction type exposes the following members.

Methods

  Name Description
Public method Commit Commits the database transaction.
Public method Dispose (Inherited from IDisposable.)
Public method Rollback Rolls back a transaction from a pending state.

Top

Remarks

The IDbTransaction interface enables you to implement a Transaction class, which represents the transaction to be performed at a data source.

An application does not create an instance of the IDbTransaction interface directly, but creates an instance of a class that implements IDbTransaction.

Classes that inherit IDbTransaction must implement the inherited members, and typically define additional members to add provider-specific functionality.

See Also

Reference

Microsoft.ReportingServices.DataProcessing Namespace