Find jobs - Articles directory - Submit article - Debt Consolidation - Debt Consolidation

PDA

View Full Version : Problem having ADODB.Field error '800a0bcd'


wonder_gal
Oct 19th 2005, 8:34 pm
When I execute my asp written page i encountered an error known as

<ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. >

But I've checked that my recordset did contain records and my session did not times out.

Can someone pls kindly point out to me what possibly cause this error? Ur help is very much appreciated. Thanks.

factorysealed
Oct 19th 2005, 11:15 pm
I would guess the problem is that your query returned 0 records and somewhere in your code you are trying to reference the recordset.

Without posting your code though it's tuff to tell...

Are you using a line similar to "if not rs.eof then" ?

baseballcube
Oct 24th 2005, 9:38 am
When I get this error, its usually because my query returns no records and then I reference the recordset later.

Also check to make sure that you don't have 2 queries referencing the same recordset object, especially in a loop.

wonder_gal
Oct 26th 2005, 1:59 am
Ya, im using "if not rs.eof then"s looping condition. I solved the problem already, really thanks alot.