Data.SqlExpr.TSQLConnection.MultipleTransactionsSupported

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property MultipleTransactionsSupported: LongBool read FSupportsNestedTrans;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr TSQLConnection

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