API:Bde.DBTables.TBDEDataSet.AllocRecordBuffer

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TBDEDataSet

Delphi

function AllocRecordBuffer: TRecordBuffer; override;

C++

virtual Data::Db::TRecordBuffer __fastcall AllocRecordBuffer();

Description

Allocates memory for the record buffer.

Bde.DBTables.TBDEDataSet.AllocRecordBuffer inherits from Data.DB.TDataSet.AllocRecordBuffer. All content below this line refers to Data.DB.TDataSet.AllocRecordBuffer.

Allocates memory for the record buffer.

AllocRecordBuffer is used internally by derived class methods to allocate memory for the record buffer. The method returns a TRecordBuffer.

Note: Unidirectional datasets do not buffer records.

Note: This method is virtual and returns nil for Delphi and NULL for C++. The derived classes will implement a specific allocation of memory.


See Also