Data.SqlExpr.TSQLConnection.MultipleTransactionsSupported

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: TSQLConnection

Delphi

property MultipleTransactionsSupported: LongBool read FSupportsNestedTrans;

C++

__property System::LongBool MultipleTransactionsSupported = {read=FSupportsNestedTrans, nodefault};

Description

Indicates whether the database server supports multiple transactions.

Read MultipleTransactionsSupported at runtime to ascertain whether the database server supports multiple transactions (either nested or overlapping).

Note: To determine whether the server supports transactions at all, use the TransactionsSupported property. If a server supports only a single transaction at a time, TransactionsSupported is true, and MultipleTransactionsSupported is false.

See Also