Returns a transaction object. Commands associated with a transaction object are executed as a single transaction. The transaction is terminated with a Commit() or Rollback().
AseTransaction BeginTransaction( )
AseTransaction BeginTransaction( IsolationLevel isolationLevel )
isolationLevel: A member of the IsolationLevel enumeration. The default value is ReadCommitted.
An object representing the new transaction.
To associate a command with a transaction object, use the AseCommand.Transaction property.
AseTransaction tx = conn.BeginTransaction(IsolationLevel.ReadUncommitted );
“Commit method”, “Rollback method”, “Transaction processing”, and the Adaptive Server Enterprise System Administration Guide for information about inconsistencies.