Bde.DBTables.TBDEDataSet.InternalGotoBookmark

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual void __fastcall InternalGotoBookmark(System::DynamicArray<System::Byte> Bookmark)/* overload */;
virtual void __fastcall InternalGotoBookmark _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (void * Bookmark)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TBDEDataSet

Description

Moves to the record with the given bookmark.

Bde.DBTables.TBDEDataSet.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