<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > ADODB > ADODB Module Classes > ADODB_Recordset > ADODB_Recordset Properties > <ADODB_Recordset>.EOF |
Description
Returns %True if the current record position is after the last record in an ADODB_Recordset
Syntax
n = <ADODB_Recordset>.EOF
Returns
Number: %True or %False.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
The ADODB_RecordSet.BOF and ADODB_RecordSet.EOF properties are set to %True if you open an empty Recordset. ADODB_RecordSet.RecordCount property is zero.
If an ADODB_Recordset holds at least one record, the first record is the current and the BOF and EOF properties are False
Restrictions
See also
Examples