Data.SqlExpr.TTransactionDesc

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TTransactionDesc = packed record
    TransactionID    : LongWord;             { Transaction id }
    GlobalID         : LongWord;             { Global transaction id }
    IsolationLevel   : TTransIsolationLevel; {Transaction Isolation level}
    CustomIsolation  : LongWord;             { DB specific custom isolation }
  end;

C++

struct DECLSPEC_DRECORD TTransactionDesc
{
public:
    unsigned TransactionID;
    unsigned GlobalID;
    TTransIsolationLevel IsolationLevel;
    unsigned CustomIsolation;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr Data.SqlExpr


Beschreibung

Record für die Transaktionsbeschreibung.

Der Record TTransactionDesc enthält Informationen über ein TTransactionItem einer Transaktion.

Siehe auch