Data.DB.TBookmarkFlag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBookmarkFlag = (bfCurrent, bfBOF, bfEOF, bfInserted);

C++

enum DECLSPEC_DENUM TBookmarkFlag : unsigned char { bfCurrent, bfBOF, bfEOF, bfInserted };

Properties

Type Visibility Source Unit Parent
enum public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

Description

TBookmarkFlag is a set that is used internally.

TBookmarkFlag is a set that is used internally by the GetBookmarkFlag method in order to retrieve the corresponding bookmark of a given record. In other words, TBookmarkFlag is used by the dataset to store row positioning within the dataset. The possible values for TBookmarkFlag are listed in the following table:


Value Description

bfCurrent

The bookmark is on the current record.

bfBOF

The bookmark is on the beginning of file.

bfEOF

The bookmark is on the end of file.

bfInserted

The bookmark is on the last inserted record.


See Also