OdbcConnection.IDbConnection.BeginTransaction Method

Definition

Overloads

IDbConnection.BeginTransaction()

This API supports the product infrastructure and is not intended to be used directly from your code.

Begins a database transaction.

IDbConnection.BeginTransaction(IsolationLevel)

This API supports the product infrastructure and is not intended to be used directly from your code.

Begins a database transaction with the specified isolation level.

IDbConnection.BeginTransaction()

Begins a database transaction.

This API supports the product infrastructure and is not intended to be used directly from your code.

C#
System.Data.IDbTransaction IDbConnection.BeginTransaction();

Returns

An object representing the new transaction.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the OdbcConnection instance is cast to an IDbConnection interface.

Applies to

.NET Framework 1.1
Product Versions
.NET Framework 1.1

IDbConnection.BeginTransaction(IsolationLevel)

Begins a database transaction with the specified isolation level.

This API supports the product infrastructure and is not intended to be used directly from your code.

C#
System.Data.IDbTransaction IDbConnection.BeginTransaction(System.Data.IsolationLevel isolevel);

Parameters

isolevel
IsolationLevel

A bitwise combination of the enumeration values that specify the isolation level.

Returns

An object representing the new transaction.

Implements

Applies to

.NET Framework 1.1
Product Versions
.NET Framework 1.1