Re: [Firebird-devel] Trace API and PSQL

2011-06-14 Thread Vlad Khorsun
> 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

[Firebird-devel] Trace API and PSQL

2011-06-14 Thread Thomas Steinmaurer
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)