I've noticed that HeidiSQL uses // as delimiter when dumping code for stored routines. Is it a safe choice to use in my own code? I have a little PHP script that generates SQL dumps and I want to make sure the dumps are valid no matter the code.
P.S. Other possibilities seem to be $$ (MySQL Workbench) and ;; (mysqldump).