MySQL Forums
Forum List  »  Stored Procedures

MySQL QueryBrowser 1.1.7 and Stored Procedures
Posted by: Håvard Meling
Date: May 03, 2005 07:54AM

Using:
MySQL QueryBrowser 1.1.7 (win32)
MySQL 5.4 (win32)

No matter what I try I get an syntax error when trying to create Stored procedures from QueryBrowser.
It works from commandline tool.

I have tried with builtin template:

DELIMITER \\

DROP PROCEDURE IF EXISTS `hei`.`asdf`\\
CREATE PROCEDURE `hei`.`asdf` ()
BEGIN

END\\

DELIMITER ;

------------------------------------------
and

DELIMITER \\

DROP PROCEDURE IF EXISTS hei.asdf\\
CREATE PROCEDURE hei.asd ()
BEGIN

END\\

DELIMITER ;

Always syntax error. What is wrong?

Options: ReplyQuote




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.