FireDAC.Phys.IBWrapper.TIBInfo.TConfig

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TConfig = record
    public type
      TEntry = record
        FID: Integer;
        FValue: Integer;
      end;
    public
      FConfig: TArray<TEntry>;
      FServerPath: String;
      FLockPath: String;
      FMessagePath: String;
      FSecurityDBFile: String;
    end;

C++

struct DECLSPEC_DRECORD TConfig
{
public:
    struct DECLSPEC_DRECORD TEntry
    {
    public:
        int FID;
        int FValue;
    };
public:
#ifndef _WIN64
    System::DynamicArray<TEntry> FConfig;
#else /* _WIN64 */
    System::TArray__1<TEntry> FConfig;
#endif /* _WIN64 */
    System::UnicodeString FServerPath;
    System::UnicodeString FLockPath;
    System::UnicodeString FMessagePath;
    System::UnicodeString FSecurityDBFile;
};

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.