This must be a pretty newbie mistake, but I'm still flummoxed by it. I created a very simple procedure:
create procedure deleteAll ()
begin
delete from test1;
delete from test2;
end
but when I run it I get a Error code -1: Error executing SQL command.
The strangest part is that it still does what its supposed to, the data IS deleted from those two tables. So if its necessary I can go on with my life; but I would like to know why the error is occurring.
Thanks,
Adam