Edit Parameters dialog pops up when using labels
Posted: Wed 25 Jul 2018 21:20
The "Edit Parameters" dialog pops up every time I execute a CREATE PROCEDURE... that has any labels inside.
DBForge seems to think that labels are parameters.
Try to run this code:
And DBForge asks for a "BEGIN" parameter:

DBForge seems to think that labels are parameters.
Try to run this code:
Code: Select all
DELIMITER //
DROP PROCEDURE IF EXISTS `sp_test` //
CREATE DEFINER=`localhost`@`localhost` PROCEDURE `sp_test`(
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY DEFINER
COMMENT ''
proc_label:BEGIN
END//
