Returns a Long that indicates whether or not the result set is limited. Returns the number of rows to be returned if the ResultSet object execute is limited, or 0 (zero) if not limited.
This method is available following a call to the ResultSet object Execute method, and can be used with the EnableRecordCount and GetRecordCount methods.
VBScript
resultset.ResultSetIsLimited
Perl
$resultset->ResultSetIsLimited();
Perl
# Alert the caller about the data truncation:
$ResultSet->EnableRecordCount();
$ResultSet->Execute ();
My $limited_rs = $ResultSet->ResultIsLimited();
My $recs = $ResultSet->GetRecordCount();
If ($limites_rs) print "ResultSet limited to $recs rows!\n";