Hey folks,
would it possible to add an option to create a copy of existing stored routine (as it's there for tables)?
Hey folks,
would it possible to add an option to create a copy of existing stored routine (as it's there for tables)?
well you can't actually copy routines that way because you have to specify delimiter.
delimiter $$
/*
insert your stored routine from the "create tab" here.
*/
;
$$
delimiter ;
it would be much easier if there's was integrated an option to copy routines without extra hand work.
Please login to leave a reply, or register at first.