Rowset does not support scrolling backward

前端 未结 2 1300
感情败类
感情败类 2020-12-03 23:07

I am trying to query a MySQL database with the below code:

\'declare the variables 
Dim Connection
Dim Recordset
Dim S         


        
2条回答
  •  误落风尘
    2020-12-03 23:34

    adOpenDynamic is not declared in VBScript and therefore equals Empty, which gets converted to 0 when you assign the CursorType property.
    0 is adOpenForwardOnly, and forward only does not support moving backwards, an ability the Find method wants.

    You should replace adOpenDynamic with its literal value:

    Recordset.CursorType = 2 'adOpenDynamic
    

    To avoid this class of errors altogether, place Option Explicit as the first line of your script.

提交回复
热议问题