BeginTransaction(string) Method

Syntax:

public RdmTransaction BeginTransaction(String transactionName)

Description:

The BeginTransaction method creates a new transaction that can be used to combine changes into a unit that can be committed or discarded all together. There can only be one transaction active per connection.

This method creates a transaction with the specified transaction name and the default isolation level (IsolationLevel.Serializable).

Parameters:

transactionName

Type: System.String

Specifies the name to pass to the SQL engine for the new transaction.

Return Value:

Type: RdmTransaction

Exceptions:

Exception Condition
InvalidOperationException The connection is closed.
InvalidOperationException A transaction is already in progress.