Thanks Andy. I changed the Statement Termination Character to be '@' and that seems to have solved the problem other than the fact that I don't see the insert happening in the table
------------------------------ Commands Entered ------------------------------
create procedure my_proc1 ()
LANGUAGE SQL
BEGIN
INSERT into T1 values (10, 'ABCDE');
END@
------------------------------------------------------------------------------
create procedure my_proc1 ()
LANGUAGE SQL
BEGIN
INSERT into T1 values (10, 'ABCDE');
END
DB20000I The SQL command completed successfully.
Now when I do a select * from T1 - it returns nothing
Is this something to do with the '@' as statement termination character? I tried putting '@' at the end of the insert statement - no luck. Or it is something else like Auto Commit?