Bde.DBTables.TBDEDataSet.IsSequenced

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TBDEDataSet

Delphi

function IsSequenced: Boolean; override;

C++

virtual bool __fastcall IsSequenced();

Description

IsSequenced indicates whether sequence numbers are available for database records.

Call IsSequenced to determine whether database records can be located by sequence numbers. When IsSequenced is true, the dataset can navigate directly to a specific record by setting the RecNo property. If IsSequenced is false, the only way to navigate to a specific record is to start at the beginning and count records.

See Also