Bde.DBTables.TBDEDataSet.InternalInitRecord
Delphi
procedure InternalInitRecord(Buffer: TRecordBuffer); override;
C++
virtual void __fastcall InternalInitRecord(System::PByte Buffer)/* overload */;
inline void __fastcall InternalInitRecord(NativeInt Buffer){ Data::Db::TDataSet::InternalInitRecord(Buffer); }
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | Bde.DBTables.pas Bde.DBTables.hpp |
Bde.DBTables | TBDEDataSet |
Description
Initializes a record buffer.
Bde.DBTables.TBDEDataSet.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.