FireDAC.Comp.DataSet.TFDDataSet.InternalGotoBookmark

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDDataSet

Delphi

procedure InternalGotoBookmark(Bookmark: Pointer); overload; {$IFNDEF NEXTGEN} override; {$ENDIF}
procedure InternalGotoBookmark(Bookmark: TBookmark); overload; override;

C++

virtual void __fastcall InternalGotoBookmark(void * Bookmark)/* overload */;
virtual void __fastcall InternalGotoBookmark(Data::Db::TBookmark Bookmark)/* overload */;

Description

Moves to the record with the given bookmark.

FireDAC.Comp.DataSet.TFDDataSet.InternalGotoBookmark inherits from Data.DB.TDataSet.InternalGotoBookmark. All content below this line refers to Data.DB.TDataSet.InternalGotoBookmark.

Moves to the record with the given bookmark.

InternalGotoBookmark method is virtual and every descendant of TDataSet must implement it in its specific way to move the dataset to the record pointed by the Bookmark parameter.

The method is called by GotoBookmark, which manages the bookmark positioning and may be called by InternalSetToRecord if the dataset is not unidirectional.


Note: Unidirectional datasets do not support bookmarks.

See Also