FireDAC.Comp.DataSet.TFDDataSet.GetCurrentRecord

提供: RAD Studio API Documentation
移動先: 案内検索

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); }

プロパティ

種類 可視性 ソース ユニット
function public
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

説明

現在のレコードをバッファに取得する仮想関数を実装します。

FireDAC.Comp.DataSet.TFDDataSet.GetCurrentRecord は Data.DB.TDataSet.GetCurrentRecord を継承しています。以下の内容はすべて Data.DB.TDataSet.GetCurrentRecord を参照しています。

現在のレコードをバッファに取得する仮想関数を実装します。

この関数は、常に false を返し、これは失敗を示します。現在のレコードの値を取得するため、このレコードをオーバーライドする TDataSet の下位クラスでは、GetCurrentRecord は、Buffer が現在のレコードの値によって正常に埋められた場合に true を返すようにします。

関連項目