Bde.DBTables.TBDEDataSet.GetCurrentRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual bool __fastcall GetCurrentRecord(System::PByte Buffer)/* overload */;
inline bool __fastcall  GetCurrentRecord(NativeInt Buffer){ return Data::Db::TDataSet::GetCurrentRecord(Buffer); }

Properties

Type Visibility Source Unit Parent
function public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TBDEDataSet

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