Datasnap.DBClient.TCustomClientDataSet.InternalInitRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalInitRecord(Buffer: TRecBuf); overload; override;
procedure InternalInitRecord(Buffer: TRecordBuffer); overload; override; deprecated 'Use overloaded method instead';

C++

virtual void __fastcall InternalInitRecord(NativeInt Buffer)/* overload */;
virtual void __fastcall InternalInitRecord _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::PByte Buffer)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TCustomClientDataSet

Description

Initializes a record buffer.

Datasnap.DBClient.TCustomClientDataSet.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