iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

SqlMapper.BeginTransaction Method

Begins a database transaction.

Overload List

Begins a database transaction.

public ISqlMapSession BeginTransaction();

Begins a database transaction on the currect session

public ISqlMapSession BeginTransaction(Boolean);

Start a database transaction on the current session with the specified isolation level.

public ISqlMapSession BeginTransaction(Boolean,IsolationLevel);

Begins a database transaction with the specified isolation level.

public ISqlMapSession BeginTransaction(IsolationLevel);

Open a connection and begin a transaction on the specified connection string.

public ISqlMapSession BeginTransaction(String);

Begins a transaction on the current connection with the specified IsolationLevel value.

public ISqlMapSession BeginTransaction(String,Boolean,IsolationLevel);

Open a connection and begin a transaction on the specified connection string.

public ISqlMapSession BeginTransaction(String,IsolationLevel);

See Also

SqlMapper Class | IBatisNet.DataMapper Namespace