FireDAC.Phys.IBBase.TFDIBColInfoRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFDIBColInfoRec = record
    FVar: TIBVariable;
    FName: String;
    FOriginTabName,
    FOriginColName: String;
    FPos: Integer;
    FLen,
    FPrec,
    FScale: SmallInt;
    FSrcSQLDataType,
    FSrcSQLSubType: SmallInt;
    FSrcDataType,
    FDestDataType: TFDDataType;
    FSrcTypeName: String;
    FAttrs: TFDDataAttributes;
    FFDLen: LongWord;
    FInPK: Boolean;
    FItemInfos: array of TFDIBColInfoRec;
  end;

C++

struct DECLSPEC_DRECORD TFDIBColInfoRec
{
private:
    typedef System::DynamicArray<TFDIBColInfoRec> _TFDIBColInfoRec__1;
public:
    Firedac::Phys::Ibwrapper::TIBVariable* FVar;
    System::UnicodeString FName;
    System::UnicodeString FOriginTabName;
    System::UnicodeString FOriginColName;
    int FPos;
    short FLen;
    short FPrec;
    short FScale;
    short FSrcSQLDataType;
    short FSrcSQLSubType;
    Firedac::Stan::Intf::TFDDataType FSrcDataType;
    Firedac::Stan::Intf::TFDDataType FDestDataType;
    System::UnicodeString FSrcTypeName;
    Firedac::Stan::Intf::TFDDataAttributes FAttrs;
    unsigned FFDLen;
    bool FInPK;
    _TFDIBColInfoRec__1 FItemInfos;
};

Properties

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

Description

Holds column information.

The TFDIBColInfoRec record holds column information in its fields.

Some of these include:

Note that, generally, users will not use this structure directly.

See Also