MySQL Forums
Forum List  »  Quality Assurance

Re: creating stored procedure problem
Posted by: Chetan Dhumale
Date: February 28, 2012 05:53AM

Hi, please check that the end of the procedure should be as follows:

END ;
$$
DELIMITER ;

IN short
(1) end the procedure with the semicolon. (END ;)
(2) then put the DELIMITER ($$)
(3) then finally change the DELIMITER. (DELIMITER ;)

regards
Chetan

Options: ReplyQuote


Subject
Views
Written By
Posted
2710
February 13, 2012 11:44PM
Re: creating stored procedure problem
1061
February 28, 2012 05:53AM


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.