Subject | Re: [firebird-support] Error: message length error (encountered 36, |
---|---|
Author | Helen Borrie |
Post date | 2007-12-12T13:37:06Z |
At 12:21 AM 13/12/2007, you wrote:
declare variable var1...
declare var2...
declare var3...etc
begin
....
execute procedure subproc(...) returning_values (:var1, :var2, :var3);
** NOT **
select * from subproc(...) into :var1, :var2, :var3;
./heLen
>Hi Vlad,What about the code you are using to invoke the embedded procedure[s], i.e. it should be
>
>We recompiled the procedures using IBExpert. It still fails with the
>same error message. Any other suggestions?
declare variable var1...
declare var2...
declare var3...etc
begin
....
execute procedure subproc(...) returning_values (:var1, :var2, :var3);
** NOT **
select * from subproc(...) into :var1, :var2, :var3;
./heLen