Common Microsoft Access Database Errors
Common Microsoft Access Database Errors
Either BOF or EOF is True, or the current record has been deleted
ADODB.Recordset (0x800A0BCD)
Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record.
This is a recordset error. It means that you have tried to read into a variable or display in a web
page a record from the recordset that has either been deleted or does not exist.
The most common occurrence of this error is if you have run a database query that has not
returned any records and you have then tried to read in a record from the recordset that
contains no data.
You need to first check that there is a record in the recordset before reading it in (eg. 'If NOT
rsRecordSet.EOF Then').
Item cannot be found in the collection corresponding to the requested name or ordinal
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
This like the error above is a recordset error. You have tried requesting a field from the
recordset that does not exist.
Check when you are reading in the field from the recordset into a variable or to display in a web
page that you have spelt the field name correctly and that the field exists in the database.