IBX.IBCustomDataSet.TIBCustomDataSet.GetCurrentRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual bool __fastcall GetCurrentRecord(NativeInt Buffer)/* overload */;
inline bool __fastcall  GetCurrentRecord _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::PByte Buffer){ return Data::Db::TDataSet::GetCurrentRecord(Buffer); }

Properties

Type Visibility Source Unit Parent
function public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBCustomDataSet

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.