hi
i have this error when i try to movefirst on a recordset reading from command obj.
error is
rowset does not support fetching backward
can anyone help
Printable View
hi
i have this error when i try to movefirst on a recordset reading from command obj.
error is
rowset does not support fetching backward
can anyone help
Most likely, it has something to do with the options you`re using in your ADODB.Recordset object, assuming you`re using ADO to connect to your database. This is how I open My recordsets and I can traverse through them inn any direction :
Check out some documentation for the ADODB.Recordset object for more details! Hope this helps!Code:
strSQL = "Select * From AA WHERE Kwd_AA = 1;"
rsAA.CursorLocation = adUseClient
rsAA.Open strSQL, conn_bio_tech, adOpenDynamic, adLockOptimistic
im using command obj and stored proc