Fix error on my web journal

RangerEsq

New member
Nov 1, 2010
562
1
0
My web journal is giving me an error. I cannot add authors because when I
try to, I keep getting this:

ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested
operation requires a current record.



Please let me know if you can fix it and how much it will be.
 


I reckon the issue is that your query returned no records and somewhere in your code you are trying to reference the recordset.

It would be hard to point out without you posting your code.

Do you use "if not rs.eof then"?
 
Agree with Triped. The page is expecting data in the recordset, and it is not handling the case of no data being returned.

Something may have been deleted from your access DB that is causing the issue, but you should still add some code to handle this case.

No doubt this is ASP/VBScript. Are you able to post the code from the page that is throwing the error?