Hi,
This is very strange...
I have a simple query using a recordset thus...
Occasionally this code generates an error on the myArray line as follows...
'Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record'
How is that possible since i've already made that check before calling getRows ???
Any help would be much appreciated !
Thanks.
This is very strange...
I have a simple query using a recordset thus...
Code:
set rsID = CreateObject("ADODB.recordset")
searchPhrase = "SELECT blah...."
rsID.Open searchPhrase, oConn
If NOT (rsID.eof AND rsID.bof) then
myArray = rsID.getRows()
End If
'Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record'
How is that possible since i've already made that check before calling getRows ???
Any help would be much appreciated !
Thanks.
Comment