FireDAC.Comp.DataSet.TFDDataSet.InternalInitRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual void __fastcall InternalInitRecord(NativeInt Buffer)/* overload */;
virtual void __fastcall InternalInitRecord(System::PByte Buffer)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

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