API: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

Implements a virtual function to retrieve the current record in a buffer.

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

Implements a virtual function to retrieve the current record in a buffer.

This function always returns false, indicating failure. For TDataSet descendants that override this method to retrieve the value of the current record, GetCurrentRecord returns true if Buffer is successfully filled with the value of the current record.

See Also