DB.GetRecordCount
Description
Description
This method will return the number of records within the record set. A call to this method can be time consuming, so it is not recommended for record set traversal: use the Do ... Loop While ( DB.GoNext() ) construct instead. Select is not required for this method to be called.
Syntax
Syntax
Function GetRecordCount
Parameters
Parameters
none
Return value
Return value
int - the number of records in the database
Example
Sample code
Dim count
count = DB.GetRecordCount()Â
See also