Data.SqlExpr.TTransactionDesc

提供: RAD Studio API Documentation
移動先: 案内検索

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;
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr Data.SqlExpr


説明

トランザクション記述のレコードです。

TTransactionDesc は、トランザクション TTransactionItem についての情報を保持するレコードです。

関連項目