API:IBX.IBDatabase.TIBTablespace

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

Delphi

  TIBTablespace = record
    TablespaceName : string;
    PageSize : Integer;
    Length : Integer;
    Preallocate : Integer;
    ReserveSpace : Boolean;
    IsEncrypted : Boolean;
    EncryptionKey : String;
    Description : string;
    PageCache : Integer;
    Files : TArray<TIBTablespaceFileSpec>;
  end;

C++

struct DECLSPEC_DRECORD TIBTablespace
{
public:
    System::UnicodeString TablespaceName;
    int PageSize;
    int Length;
    int Preallocate;
    bool ReserveSpace;
    bool IsEncrypted;
    System::UnicodeString EncryptionKey;
    System::UnicodeString Description;
    int PageCache;
#ifndef _WIN64
    System::DynamicArray<TIBTablespaceFileSpec> Files;
#else /* _WIN64 */
    System::TArray__1<TIBTablespaceFileSpec> Files;
#endif /* _WIN64 */
};

プロパティ

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

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。