MySQL Forums
Forum List  »  Stored Procedures

Re: Stored Procedure fails to populate first column, plus a strange error
Posted by: Peter Brawley
Date: April 04, 2018 09:29AM

In or out of sprocs, every query, every fetch needs error handling. In sprocs, Declare...Handler and/or Signal. A glaring omission is a continue handler wherever no-rows-found is logically possible ...

DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Stored Procedure fails to populate first column, plus a strange error
439
April 04, 2018 09:29AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.