Data.DB.TDataSet.InternalGotoBookmark

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

procedure InternalGotoBookmark(Bookmark: TBookmark); overload; virtual;
procedure InternalGotoBookmark(Bookmark: Pointer); overload; virtual; deprecated 'Use overloaded method instead';

C++

virtual void __fastcall InternalGotoBookmark(TBookmark Bookmark)/* overload */;
virtual void __fastcall InternalGotoBookmark _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (void * Bookmark)/* overload */;

Description

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