Enables a record count for the result set.
To get a record count, you first use EnableRecordCount to enable row count and then call NombreEnregistrements to get the number of records. Use this method after defining the ResultSet object, but before executing it.
VBScript
resultset.EnableRecordCount
Perl
$resultset->EnableRecordCount();
VBScript
Set ResultSet = cqSession.BuildResultSet(qrydef)
ResultSet.EnableRecordCount
ResultSet.Execute
count = ResultSet.RecordCount
Perl
$resultset->EnableRecordCount();
$resultset->Execute();
$rows = $resultset->GetRecordCount();