PreviousData Provider for .NET Guide (9.1 revision 1) Next

Using Local Transactions

Show this topic in Library frames

Local transactions use the internal transaction manager of the underlying database. The Pervasive.SQL data provider uses only 100% managed code to support the transactions, which are implemented entirely within the .NET Framework.

The application creates a PsqlTransaction object by calling BeginTransaction on the PsqlConnection object. Subsequent operations, such as committing or aborting the transaction, are performed on the PsqlTransaction object.

See Using a Local Transaction for a code example.


Chapter contents
Publication contents

Prev topic: Stored Procedures
Next topic: Thread Support