Skip to content

MySQL support (DELIMITER) #89

Open
@nene

Description

@nene

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions