Data.DB.TDataSet.InternalInitRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalInitRecord(Buffer: TRecBuf); overload; virtual;
procedure InternalInitRecord(Buffer: TRecordBuffer); overload; virtual; 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
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

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