Returns the record count (the number of rows) of the result set.
To get a record count, you first use EnableRecordCount to enable row count before calling RecordCount (GetRecordCount, for Perl) to get the number of records.
VBScript
resultset.RecordCount
Perl
$resultset->GetRecordCount();
VBScript
Set ResultSet = cqSession.BuildResultSet(qrydef)
ResultSet.EnableRecordCount
ResultSet.Execute
count = ResultSet.RecordCount