EOF - property of the AdoRecordset object
Description:
Detects whether the current record position is after the last record in the
AdoRecordset object.
Values:
true - If the current record position is after the last record in the
AdoRecordset object
false - Otherwise
Note:
Property access for read only.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var bEOF = oRs.EOF;
// Reading from the property
Dim bEOF
bEOF = oRs.EOF
' Reading from the property