> Hello,
>
> I have the following two execute block calls:
>
> execute block
> as
> declare i Integer;
> begin
> i = 1;
> while (i <= 10) do
> begin
> execute procedure p_donothing;
> i = i + 1;
> end
> end
>
>
> and:
>
> execute block
> as
> declare i Integer;
> declare v Inte
Hello,
I have the following two execute block calls:
execute block
as
declare i Integer;
begin
i = 1;
while (i <= 10) do
begin
execute procedure p_donothing;
i = i + 1;
end
end
and:
execute block
as
declare i Integer;
declare v Integer;
begin
i = 1;
while (i <= 10)