Data.DB.TDataSet.IsSequenced

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsSequenced: Boolean; virtual;

C++

virtual bool __fastcall IsSequenced();

Properties

Type Visibility Source Unit Parent
function public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Indicates whether the underlying database table uses record numbers to indicate the order of records.

Use IsSequenced to determine whether the underlying database table supports sequence numbers, or whether these are computed by the dataset component. When IsSequenced returns true, applications can safely use the RecNo property to navigate to records in the dataset.

As implemented in TDataSet, IsSequenced always returns true. Descendants of TDataSet reimplement this method to return a value that depends on the underlying table type.

See Also