ADODB.Field error '800a0bcd'

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • clevsone
    New Member
    • May 2006
    • 3

    ADODB.Field error '800a0bcd'

    ADODB.Field error '800a0bcd'

    Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

    /admin/database.asp, line 180

    I am currently getting this error? I'm using an access database.
  • julian77
    New Member
    • May 2006
    • 5

    #2
    what does your query, i.e. select column_name from table_name, etc look like?

    do you want to list just one record or several ones?

    basically, there are no records in your table corresponding to your query.

    /jesper

    Comment

    • Boreal
      New Member
      • Jul 2006
      • 4

      #3
      use
      Code:
      if not rs.eof then
      in the begin of your acces to the db on your asp page

      Comment

      Working...