RecCount

<< Click to Display Table of Contents >>

Navigation:  Apollo VCL Components > Apollo VCL Component Reference > TApolloQuery > TApolloQuery Properties >

RecCount

Declaration

property RecCount: Integer;

Description

Read-Only. Returns the number of records in the result set.

 

image\tip.gif For compatibility with TApolloTable, this property can also be referenced as RecordCount at run-time.

Delphi Example

Form1.Caption := IntToStr( ApolloQuery1.RecNo ) + ' / ' +

IntToStr( ApolloQuery1.RecCount );

C++Builder Example

Form1->Caption = IntToStr( ApolloQuery1->RecNo ) + " / " +

IntToStr( ApolloQuery1->RecCount );

See Also

RecNoTApolloQuery_RecNo