Data.DB.TDataSet.FreeRecordBuffer
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: protected | |
Source: Data.DB.pas Data.DB.hpp
| |
Unit: Data.DB | |
Parent: TDataSet |
Delphi
procedure FreeRecordBuffer(var Buffer: TRecordBuffer); virtual;
C++
virtual void __fastcall FreeRecordBuffer(TRecordBuffer &Buffer);
Description
Frees the record buffer.
FreeRecordBuffer is used internally by derived class methods to free the record buffer. TRecordBuffer
is the buffer to free.
Note: Unidirectional datasets do not buffer records.
Note: This method is virtual. Derived datasets will implement a specific operation to free the memory.