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