MySQL Forums
Forum List  »  Stored Procedures

Re: TOO_MANY_ROWS
Posted by: Peter Brawley
Date: July 13, 2020 10:37AM

Your exception handler has multiple lines so it needs begin...end:

  declare EXIT handler for SQLEXCEPTION 
    begin
      SET has_error=1;
      select 'TOO MANY ROWS';
    end;

Options: ReplyQuote


Subject
Views
Written By
Posted
1581
July 13, 2020 08:31AM
513
July 13, 2020 08:39AM
662
July 13, 2020 09:20AM
Re: TOO_MANY_ROWS
858
July 13, 2020 10:37AM
528
July 13, 2020 11:07AM
478
July 13, 2020 02:54PM


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.