FireDAC.Phys.IBWrapper.TIBInfo.TLicense

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TLicense = record
    public type
      TCertificate = record
        FID: String;
        FKey: String;
        FDesc: String;
      end;
    public
      FCertificates: TArray<TCertificate>;
      FLicenseMask: Integer;
      FCapabilities: Integer;
      FUsers: Integer;
      FProduct: String;
    end;

C++

struct DECLSPEC_DRECORD TLicense
{
public:
    struct DECLSPEC_DRECORD TCertificate
    {
    public:
        System::UnicodeString FID;
        System::UnicodeString FKey;
        System::UnicodeString FDesc;
    };
public:
#ifndef _WIN64
    System::DynamicArray<TCertificate> FCertificates;
#else /* _WIN64 */
    System::TArray__1<TCertificate> FCertificates;
#endif /* _WIN64 */
    int FLicenseMask;
    int FCapabilities;
    int FUsers;
    System::UnicodeString FProduct;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FireDAC.Phys.IBWrapper.pas
FireDAC.Phys.IBWrapper.hpp
FireDAC.Phys.IBWrapper TIBInfo

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!