Results 1 to 3 of 3

Thread: problem with rowset

  1. #1

    Thread Starter
    Lively Member mowafy's Avatar
    Join Date
    Jul 2005
    Posts
    116

    problem with rowset

    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

  2. #2
    Hyperactive Member divined's Avatar
    Join Date
    Aug 2004
    Location
    Thessaloniki, Greece
    Posts
    447

    Re: problem with rowset

    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 :

    Code:
     
      strSQL = "Select * From AA WHERE Kwd_AA = 1;" 
      rsAA.CursorLocation = adUseClient
      rsAA.Open strSQL, conn_bio_tech, adOpenDynamic, adLockOptimistic
    Check out some documentation for the ADODB.Recordset object for more details! Hope this helps!
    SteadFast!

  3. #3

    Thread Starter
    Lively Member mowafy's Avatar
    Join Date
    Jul 2005
    Posts
    116

    Re: problem with rowset

    im using command obj and stored proc

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width