Subject Whats Wrong with this?
Author StinkyDuck
SET TERM ^ ;
CREATE PROCEDURE MO(
VMONTH SMALLINT)
AS
BEGIN
IF (:VMONTH = 1) THEN
EXECUTE PROCEDURE SP_MO2;
END;
^
SET TERM ; ^

I get an error Invalid Command. If I take the ':' from VMONTH it works.
Whats the proper syntax.