FireDAC.Comp.DataSet.TFDDataSet.InternalInitRecord

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDDataSet

Delphi

procedure InternalInitRecord(Buffer: TRecBuf); override;
procedure InternalInitRecord(Buffer: TRecordBuffer); overload; override;

C++

virtual void __fastcall InternalInitRecord(Data::Db::TRecBuf Buffer)/* overload */;
virtual void __fastcall InternalInitRecord(Data::Db::TRecordBuffer Buffer)/* overload */;

Description

Initializes a record buffer.

FireDAC.Comp.DataSet.TFDDataSet.InternalInitRecord inherits from Data.DB.TDataSet.InternalInitRecord. All content below this line refers to Data.DB.TDataSet.InternalInitRecord.

Initializes a record buffer.

InternalInitRecord is internally used by InitRecord and ClearFields to reset the buffer. This method is virtual and blank, so every TDataSet descendant must override it in its specific way. Usually, this method should fill the buffer with numeric zeros or spaces.

See Also