Seem that i was happy till i discovered this:
im using a query to access the database............
and always i was writing my pages following this format:
ssql = ssql & "......"
etc etc
oRecord.Open ssql, oconnect, 3
Response.Write "<table>"
If orecord.eof and orecord.bof then
Response.Write "<br><h2 align = center>Sorry, there are no records to display.<h2><br>"
else
Response.Write "<table>"
for loop.......
etc etc etc
Response.Write "</table>"
end if
close.....all
and this is how i was working till today 22 march one of the pages returned ZERO records.
Which means that my query identified (zero) from the table
I was thinking that :
if (oRecord.eof) and (oRecord.bof) sutisfies the ZERO records but unfortunatelly i have the following classic error:
ADODB.Recordset error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/tPar/hibandreport.asp, line 87
any sudgestions for something that satisfies completely zero records?????
im using a query to access the database............
and always i was writing my pages following this format:
ssql = ssql & "......"
etc etc
oRecord.Open ssql, oconnect, 3
Response.Write "<table>"
If orecord.eof and orecord.bof then
Response.Write "<br><h2 align = center>Sorry, there are no records to display.<h2><br>"
else
Response.Write "<table>"
for loop.......
etc etc etc
Response.Write "</table>"
end if
close.....all
and this is how i was working till today 22 march one of the pages returned ZERO records.
Which means that my query identified (zero) from the table
I was thinking that :
if (oRecord.eof) and (oRecord.bof) sutisfies the ZERO records but unfortunatelly i have the following classic error:
ADODB.Recordset error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/tPar/hibandreport.asp, line 87
any sudgestions for something that satisfies completely zero records?????