-
Err msg Submitting Data
I have never come across this err msg. Hopefully someone can tell me what the err means.
I am using asp and submitting data to an Access 97 mdb.
The err msg is:
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the Current record has been deleted. Requested operation requires a current record.
If I click on the back button and then click the submit button it will work but why am I encountering this err msg?
-
When you open a recordset, the true scope of the set is
sometimes not set until you perform an operation. A good
example is the recordcount property. Until you force the set to
go to the bottom, the recordcount property is suspect.
Try performing a simple operation on the set (movenext maybe)
before adding or changing.
HTH