Data.SqlExpr.TCustomSQLDataSet.GetRecordCount
Delphi
function GetRecordCount: Integer; override;
C++
virtual int __fastcall GetRecordCount();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Data.SqlExpr.pas Data.SqlExpr.hpp |
Data.SqlExpr | TCustomSQLDataSet |
Description
Returns the total number of records in the dataset.
Data.SqlExpr.TCustomSQLDataSet.GetRecordCount inherits from Data.DB.TDataSet.GetRecordCount. All content below this line refers to Data.DB.TDataSet.GetRecordCount.
Returns the total number of records in the dataset.
GetRecordCount is the read access function for the RecordCount property.
GetRecordCount is inherited by some Query-type datasets, like TIBQuery. For Query-type datasets, the GetRecordCount contains the total number of records that have currently been fetched. To get GetRecordCount to report the total number of records in a Query-type dataset, call the Last method first.