FireDAC.Comp.DataSet.TFDDataSet.InternalGotoBookmark

From RAD Studio API Documentation
Jump to: navigation, search

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(System::DynamicArray<System::Byte> Bookmark)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

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