Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULConnection class » BeginTransaction methods

BeginTransaction methods Next Page

BeginTransaction() method


Returns a transaction object. Commands associated with a transaction object are executed as a single transaction. The transaction is terminated with ULTransaction.Commit or ULTransaction.Rollback.

Syntax

Visual Basic

Public Function BeginTransaction() As ULTransaction

C#

public ULTransaction BeginTransaction();

Return value

A ULTransaction object representing the new transaction.

Remarks

To associate a command with a transaction object, use the ULCommand.Transaction property. The current transaction is automatically associated to commands created by ULConnection.CreateCommand.

By default, the connection does not use transactions and all commands are automatically committed as they are executed. Once the current transaction is committed or rolled back, the connection reverts to auto commit mode until the next call to BeginTransaction.

This is the strongly-typed version of System.Data.IDbConnection.BeginTransaction() and System.Data.Common.DbConnection.BeginTransaction().

See also