Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ADODB.Field error '800a0bcd'

149922Jan 3 2002
Hello,

I'm trying to access my data in an Oracle Database, i have
always this error :

ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been
deleted; the operation requested by the application requires a
current record.

Here my code (It's ASP Page)

Set RS = Server.CreateObject("ADODB.Recordset")
RS.open "SELECT * FROM Axe", db

for each x in rs.Fields
response.write(x.name)
response.write(" = ")
response.write(x.value) => Error is here
next
RS.Close

Can you help me ?

Thanks
Laurent
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 31 2002
Added on Jan 3 2002
0 comments
561 views