ADODB.Field error '800a0bcd'
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