Results 1 to 2 of 2

Thread: Associating a Recordset with returned value from DLL

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 1999
    Location
    Belfast
    Posts
    254
    Hi,
    can someone let me know the correct syntax for assigning values ( recordset ) returned from a VB dll to ASP ( VInterDev ). I have the following:

    set lrs_OpenCalls = server.CreateObject("ADODB.Recordset")
    set lrs_OpenCalls = query_detail.get_Open_Calls(session("CustomerID"))

    apart from setting the object twice, this doesn't appear to provide me with all the required properties or methods associated with a normal recordset object. e.g.the getcount() method isn't available.

    Any heklp appreciated.


    Lenin

  2. #2
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    you don't have all the cursor functionality because your component (Query_detail) is probably returning a read-only, forward only recordset. You need to modify the component, or bypass it altogether

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