Bde.DBTables.TBDEDataSet.GetCurrentRecord

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function GetCurrentRecord(Buffer: TRecordBuffer): Boolean; override;

C++

virtual bool __fastcall GetCurrentRecord(Data::Db::TRecordBuffer Buffer)/* overload */;
inline bool __fastcall  GetCurrentRecord(Data::Db::TRecBuf Buffer){ return Data::Db::TDataSet::GetCurrentRecord(Buffer); }

Description

Retrieves the current record into a buffer.

Most applications should not need to call GetCurrentRecord. TDataSet automatically allocates a buffer for the active record.

Call GetCurrentRecord to copy the current record into a buffer allocated by the application. Buffer must be at least as big as the record size indicated by the RecordSize property.

See Also