Bde.DBTables.TBDEDataSet.IsSequenced

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsSequenced: Boolean; override;

C++

virtual bool __fastcall IsSequenced();

Properties

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

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