Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default recordset error

    I'm opening a recordset that calls a stored procedure and get the following
    error: 'Operation is not allowed when the object is closed' The error is
    occurring on this line at the bottom of my page. rsAlloAmts.Close() I haven't
    passed in any parameters to the stored procedure when I first hit the page.
    The form on the page submits to itself and passes in the values to the stored
    procedure. I'm not sure what I'm doing incorrectly? Thanks, -D-

    -D- Guest

  2. Similar Questions and Discussions

    1. Error after testing Recordset
      Hi, I've a problem with using Recordsets. It's not possible to make an RS. I choose the database, the table - the Test works fine, after I click...
    2. recordset error
      I have the following recordset: SELECT FTE_CLASS_GROUP_NBR_DSCR FROM dbo.DLIST_FTE_CLASS_GROUP WHERE FTE_GRP_ID IS NOT NULL I ammended the sql to...
    3. Recordset error message
      Hello, I am creating a recordset from a query. The recorset returns the correct information until I add the Column Names to the query. In the...
    4. Create Recordset Error
      Hi, Windows XP/SP 2/DWMX I am running into a rather odd problem with the bindings panel. After creating a recordset and attempting to go to...
    5. Error after creating second recordset
      I'm working on creating a web application with data from an Access database. The first project is an inser record form which displays just fine...
  3. #2

    Default Re: recordset error

    I would check your code for another reference that is closing the database
    connection prior to this line. It may well be inside of the stored procedure

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "-D-" <webforumsuser@macromedia.com> wrote in message
    news:d1vc97$nve$1@forums.macromedia.com...
    > I'm opening a recordset that calls a stored procedure and get the
    following
    > error: 'Operation is not allowed when the object is closed' The error is
    > occurring on this line at the bottom of my page. rsAlloAmts.Close() I
    haven't
    > passed in any parameters to the stored procedure when I first hit the
    page.
    > The form on the page submits to itself and passes in the values to the
    stored
    > procedure. I'm not sure what I'm doing incorrectly? Thanks, -D-
    >

    Paul Whitham TMM Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139