API:Bde.DBTables.TBDEDataSet.SetBookmarkFlag
Delphi
procedure SetBookmarkFlag(Buffer: TRecordBuffer; Value: TBookmarkFlag); override;
C++
virtual void __fastcall SetBookmarkFlag(System::PByte Buffer, Data::Db::TBookmarkFlag Value)/* overload */;
inline void __fastcall SetBookmarkFlag(NativeInt Buffer, Data::Db::TBookmarkFlag Value){ Data::Db::TDataSet::SetBookmarkFlag(Buffer, Value); }
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | Bde.DBTables.pas Bde.DBTables.hpp |
Bde.DBTables | TBDEDataSet |
Description
Sets the bookmark flag for the record buffer given by the parameter.
Bde.DBTables.TBDEDataSet.SetBookmarkFlag inherits from Data.DB.TDataSet.SetBookmarkFlag. All content below this line refers to Data.DB.TDataSet.SetBookmarkFlag.
Sets the bookmark flag for the record buffer given by the parameter.
SetBookmarkFlag is used to set the bookmark flag for the Buffer
record buffer. The Value
parameter is a TBookmarkFlag and is the value to set.
The method is virtual. Every TDataSet descendant must implement it in a specific way. A record buffer stores the data of the record, the bookmark, and the bookmark flags.
Note: Unidirectional datasets do not use bookmarks.