Open
Description
Support the DELIMITER command used by the mysql client, as in:
delimiter //
CREATE PROCEDURE dorepeat(p1 INT)
BEGIN
SET @x = 0;
REPEAT SET @x = @x + 1; UNTIL @x > p1 END REPEAT;
END
//
delimiter ;
There are many other commands that the mysql
client supports, but delimiter
is one of the most frequently used ones. Unfortunately it's also the trickiest to support.
Metadata
Metadata
Assignees
Labels
No labels