Rowset does not support scrolling backward

前端 未结 2 1288
感情败类
感情败类 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:42

    That is because the rowset does not permit backward moves; as the error message suggests. Your code is not using them; so you should replace the line

    Recordset.CursorType=adOpenDynamic with Recordset.CursorType=adOpenForwardOnly (or the equivalent value 0)

    Better leave the line altogether; the default is forward cursor.

提交回复
热议问题