IBX.IBCustomDataSet.TFieldData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFieldData = record
    fdDataType: Short;
    fdDataScale: Short;
    fdNullable: Boolean;
    fdIsNull: Boolean;
    fdDataSize: integer;
    fdDataLength: integer;
    fdDataOfs: Integer;
    fdCharsetSize : Short;
    fdPersistedFloatField : Boolean;
    fdChangeStatus : TIBChangeState;
  end;

C++

struct DECLSPEC_DRECORD TFieldData
{
public:
    short fdDataType;
    short fdDataScale;
    bool fdNullable;
    bool fdIsNull;
    int fdDataSize;
    int fdDataLength;
    int fdDataOfs;
    short fdCharsetSize;
    bool fdPersistedFloatField;
    Ibx::Ibsql::TIBChangeState fdChangeStatus;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet IBX.IBCustomDataSet

Description

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