TMySctipt, Delimiter problem once more.
Posted: Sun 05 Jun 2011 13:36
Please tell me how to format script like below to be executed without error in TMyScript component.
I setup also TMyScript.Delilmiter property to $$ with no effect.
I also tried to add explicitly command DELIMITER $$ at start with no change.
Michal, Poland
Code: Select all
DROP PROCEDURE IF EXISTS Raport23$$
CREATE PROCEDURE Raport23(pr INT)
COMMENT 'karta pracy produktu'
READS SQL DATA
BEGIN
SELECT * FROM Operation;
END$$
CALL CacheListReports()$$I also tried to add explicitly command DELIMITER $$ at start with no change.
Michal, Poland