Ask a Question related to ASP, Design and Development.
-
Chuck #1
Error Type: ADODB.Recordset (0x800A0BCD)
Hi!
I have a ASP page that generates an excel report. It works fine if there are
records found, however, if no records are found I would like to call the
below listed function instead of getting the following error that I am
presently receiving:
Error Type:
ADODB.Recordset (0x800A0BCD)
Either BOF or EOF is True, or the current record has been deleted. Requested
operation requires a current record
' Move to the first record
rs.movefirst <------- Errors here
if rs.eof then 'new code
' Start a loop that will end with the last record
do while not rs.eof
...
' Move to the next record
rs.movenext
' Loop back to the do statement
loop
else 'new code
call norecordsfound() 'new code
end if 'new code
%>
Thank you in advance.
Chuck
Chuck Guest
-
Cannot serialize interface ADODB.Recordset
When returning an ADO Recordset via Web Services I get the following error: Cannot serialize interface ADODB.Recordset Any Ideas? --... -
Error Type: ADODB.Command (0x800A0BB9)???
Dear friends, I am working on a App. at my work place, now wanting to set it up at home but for some reason I keep getting this error :... -
Help with ADODB.Recordset Error (0x800A0BB9)
Hello, I'm having problems resolving ADODB.Recordset Error 0x800A0BB9. I'm running tutorial code from the Wrox Press book: Beginning ASP 3.0; Ch.... -
Object Reference Error on ADODB.RecordSet Fields
One of my developers is working on a .Net web app that has a wee bit o legacy code in Page_Onload: .... Dim MySelect as String = "SELECT User... -
Connection error: ADODB.Recordset (0x800A0E7D)
I have been copying and pasting code and this has been working, but now I get this error: Error Type: ADODB.Recordset (0x800A0E7D) Operation is... -
Ray at #2
Re: Error Type: ADODB.Recordset (0x800A0BCD)
You don't need to use rs.Movefirst anyway, since it'll start at the
beginning. But, your issue is that there are no records in your recordset.
If Not rs.EOF Then
'''your looping code
Else
response.write "There are no records."
End If
Ray at work
"Chuck" <securitypro@cfl.rr.com> wrote in message
news:eEWY06%23lDHA.2772@TK2MSFTNGP10.phx.gbl...are> Hi!
>
> I have a ASP page that generates an excel report. It works fine if thereRequested> records found, however, if no records are found I would like to call the
> below listed function instead of getting the following error that I am
> presently receiving:
>
> Error Type:
> ADODB.Recordset (0x800A0BCD)
> Either BOF or EOF is True, or the current record has been deleted.> operation requires a current record
>
> ' Move to the first record
> rs.movefirst <------- Errors here> if rs.eof then 'new code
>
> ' Start a loop that will end with the last record
> do while not rs.eof
> ...
> ' Move to the next record
> rs.movenext
> ' Loop back to the do statement
> loop
> else 'new code
> call norecordsfound() 'new code
> end if 'new code
> %>
>
> Thank you in advance.
>
> Chuck
>
>
>
>
Ray at Guest



Reply With Quote

