Datasnap.Provider.TPacketDataSet.InternalInitRecord

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Datasnap.Provider.pas
Datasnap.Provider.hpp
Unit: Datasnap.Provider
Parent: TPacketDataSet

Delphi

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

C++

virtual void __fastcall InternalInitRecord(Data::Db::TRecBuf Buffer)/* overload */;
virtual void __fastcall InternalInitRecord _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (Data::Db::TRecordBuffer Buffer)/* overload */;

Description


Initializes a record buffer.

Datasnap.Provider.TPacketDataSet.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