C# Class MdxClient.MdxTransaction

Represents a transaction to be performed on a SQL Server Analysis Services database. The transaction is a no-op, but is implemented in case a transaction is needed.
Inheritance: System.Data.Common.DbTransaction
Mostrar archivo Open project: DynamicTyped/MdxClient

Public Methods

Method Description
Commit ( ) : void

Commits the transaction.

Rollback ( ) : void

Rolls back the transaction.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
MdxTransaction ( MdxConnection connection ) : System

Method Details

Commit() public method

Commits the transaction.
public Commit ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Rollback() public method

Rolls back the transaction.
public Rollback ( ) : void
return void