Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

MySQL/ASP Error - PROCEDURE % can't return a result set in the given context?

I am able to run this stored procedure on my local machine (WInXP SP3/MySQL 5.0.51b-community-nt) but I am getting an error on line 5 - "PROCEDURE sp_master_getstate can't return a result set in the given context" when running on the production server (MySQL 5.0.67-community).

Procedure:

CREATE PROCEDURE sp_master_getstate()

BEGIN

SELECT state_abbr FROM states ORDER BY id;

END

ASP code (line numbers added for clarifcation only):

1 set oconn = Server Createobject("ADODB.Connection")

2 oconn.open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=myserver; DATABASE=mydb; UID=myuid; PASSWORD=mypw; OPTION=3"

3 sql = "CALL sp_master_getstate()"

4 set rs = createobject("ADODB.Recordset")

5 rs.open sql, oconn

6 rsarr = rs.getrows()

7 rs.close

8 set rs = nothing

9 oconn.close

10 set oconn = nothing

11 for i = 0 to ubound(rsarr,2)

12 response.write rsarr(0,j) & "<br>"

13 next

Update:

Tried ODBC Driver 5.1 and still have problem.

2 Answers

Relevance
  • 1 decade ago
    Favorite Answer

    is there anything wrong if you try ODBC 5.1 Driver instead?

    from your code, this's odd,, my friend got a bug when he use vista business, while doing that..

    or does this link means something to you?

    http://bugs.mysql.com/bug.php?id=29367

  • ?
    Lv 4
    5 years ago

    thank you! this is quite cool. listed below are 5 data for you... - the 1st baseball caps have been made out of straw. - Eggplants are not vegetables they`re rather end result. - A cat has 32 muscular tissues in each ear. - A cockroach can stay quite a few weeks with its head cut back off. - a company in Taiwan makes dinnerware out of wheat, so which you will consume your plate. that's a celebrity to your astonishing data. =)

Still have questions? Get your answers by asking now.