FireDAC.Phys.ODBCBase.TFDODBCVarInfoRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFDODBCVarInfoRec = record
    FName: String;
    FExtName: String;
    FOriginCatalogName,
    FOriginSchemaName,
    FOriginTabName,
    FOriginColName: String;
    FPos: SQLSmallInt;
    FParamIndex: SQLSmallInt;
    FColSize: SQLInteger;
    FScale: SQLInteger;
    FSrcSQLDataType,
    FOutSQLDataType: SQLSmallInt;
    FSrcDataType,
    FOutDataType,
    FDestDataType: TFDDataType;
    FVar: TODBCVariable;
    FSubInfos: array of TFDODBCVarInfoRec;
    FAttrs: TFDDataAttributes;
    case Boolean of
    True: (
      FInKey: Boolean;
      FFDLen: LongWord;
      FFDScale: Integer;
    );
    False: (
      FIsNull: Boolean;
      FParamType: TParamType;
      FDataType: TFieldType;
    );
  end;

C++

struct DECLSPEC_DRECORD TFDODBCVarInfoRec
{
private:
    typedef System::DynamicArray<TFDODBCVarInfoRec> _TFDODBCVarInfoRec__1;
public:
    System::UnicodeString FName;
    System::UnicodeString FExtName;
    System::UnicodeString FOriginCatalogName;
    System::UnicodeString FOriginSchemaName;
    System::UnicodeString FOriginTabName;
    System::UnicodeString FOriginColName;
    short FPos;
    short FParamIndex;
    int FColSize;
    int FScale;
    short FSrcSQLDataType;
    short FOutSQLDataType;
    Firedac::Stan::Intf::TFDDataType FSrcDataType;
    Firedac::Stan::Intf::TFDDataType FOutDataType;
    Firedac::Stan::Intf::TFDDataType FDestDataType;
    Firedac::Phys::Odbcwrapper::TODBCVariable* FVar;
    _TFDODBCVarInfoRec__1 FSubInfos;
    Firedac::Stan::Intf::TFDDataAttributes FAttrs;
public:
    union
    {
        struct
        {
            bool FIsNull;
            Data::Db::TParamType FParamType;
            Data::Db::TFieldType FDataType;
        };
        struct
        {
            bool FInKey;
            unsigned FFDLen;
            int FFDScale;
        };
    };
};

Properties

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

Description

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