Hi, In Toad Extension for Eclipse there is no need of DELIMITER definition, not like in MySQL Console, as you can use semi-colon and run the whole script at once. I created change request 2725 to add the DROP statement in the syntax so as to avoid error. Also, because you are connected to the particular db, you can omit it in script. So in the end script looks similar to: DROP PROCEDURE IF EXISTS `test`; CREATE DEFINER=`dbtest`@`%` PROCEDURE `test`() BEGIN /**/ END; Regards, Lukas
↧