FireDAC.Comp.DataSet.TFDDataSet.IsSequenced

From RAD Studio API Documentation

Delphi

function IsSequenced: Boolean; override;

C++

virtual bool __fastcall IsSequenced(void);

Properties

Type Visibility Source Unit Parent
function public
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

Description

Indicates whether the underlying database table uses record numbers to indicate the order of records. {{#multireplace:FireDAC.Comp.DataSet.TFDDataSet.IsSequenced|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}} inherits from {{#multireplace:Data.DB.TDataSet.IsSequenced|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}. All content below this line refers to {{#multireplace:Data.DB.TDataSet.IsSequenced|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}.

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