ADODB.Recordset error '800a0bb9'

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Haldan42
    New Member
    • Nov 2014
    • 1

    ADODB.Recordset error '800a0bb9'

    Hi
    I am suddenly getting this message:

    ADODB.Recordset error '800a0bb9'

    Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.

    /include/vars.asp, line 52

    This is a copy of lines 52-69:

    Code:
    objRS.Open "table1", Application("strConnect"), adOpenForwardOnly, adLockReadOnly, adCmdTable
            If objRS.EOF Then
    			objRS.AddNew
    			objRS("VisitDay") = Application("VisitDay")
    		ElseIf objRS("VisitorCount") < Application("VisitorCount") Then
    			objRS("VisitorCount") = Application("VisitorCount")
    			objRS("EditorCount") = Application("EditorCount")
    			objRS("HitCount") = Application("HitCount")
    		End if
    		objrS.Update
    		objRS.Close
    		
    		Application.Lock
    		Application("VisitDay") = strStatDate
    		Application("VisitorCount") = 1
    		Application("EditorCount") = 0
    		Application("HitCount") = 1
    		Application.Unlock
    Can anyone help me? :)
    Last edited by Rabbit; Nov 1 '14, 03:53 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.
Working...