MySQLFields property

Previous  Top  Next

See Also Properties Methods Events Example
Unit
MySQLDataset

Applies to
TMySQLDataset TMySQLTable and TMySQLQuery components

Declaration
property MySQLFields: TStringList;

Description
A string list of all fields used in the current result set. The objects in the stringlist contains TFieldInfo classes:

  TFieldInfo = class
  public
     FieldName,
     FieldTable,
     FieldDefault,
     FieldValues: string;
     FieldType: byte;
     FieldLength,
     FieldMaxLength,
     FieldFlags,
     FieldDec,
     FieldOfs: longword;
     FieldChanged: boolean;
  end;