You are here: Symbol Reference > MtxVecDBTools Namespace > Classes > TVecColumn Class > published > TVecColumn.FieldName Property
MtxVec VCL
ContentsIndex
PreviousUpNext
TVecColumn.FieldName Property

Defines the name of field in dataset.

Pascal
property FieldName: string;

Set FieldName to connect Vector to numeric or BLOB field. FieldName must be a valid dataset field name.

procedure TForm1.FormCreate(Sender: TObject); begin MtxDataSet.Dataset := Table1; MtxDataSet.VecColumns.Clear; with MtxDataset.VecColumns.Add do begin FieldName := 'TimeAnalysis'; ReadWriteMode := wmRecord; end; with MtxDataset.VecColumns.Add do begin FieldName := 'FFTAnalysis'; ReadWriteMode := wmRecord; end; end;
void __fastcall TForm1::FormCreate(TObject *Sender) { MtxDataSet->Dataset = Table1; MtxDataSet->VecColumns->Clear(); TVecColumn *col; col = MtxDataSet->VecColumns->Add(); col->FieldName = "TimeAnalysis"; col->ReadWriteMode = wmRecord; col = MtxDataSet->VecColumns->Add(); col->FieldName = "FFTAnalysis"; col->ReadWriteMode = wmRecord; }
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!