ADO Connection

  • Hi,

    You are trying to output the recordset object, what you need to do is output it's contents. Have a look at the rs.getstring method or you can loop the recordset

    do while not rs.eof

    'output some data e'g. response.write(rs(0))...

    rs.movenext

    loop

     

  • and u r right graham, i missed out the rs.movenext.  I have done that and it worked.

    Thanks again.

     


    Kindest Regards,

    Arunkumar

    Reputation is what other people know about you. Honor is what you know about yourself."--

Viewing 2 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply