Subject | Re: [firebird-support] Little pb with suspend |
---|---|
Author | Martijn Tonies |
Post date | 2004-03-10T10:47:02Z |
Hi,
return results?
With regards,
Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS SQL
Server.
Upscene Productions
http://www.upscene.com
> Can you tell me please why this procedure returns nothing ???So, what does it do - does it return results, or doesn't it
> But when i look at fields (in IB_SQL) it returns good results.
return results?
With regards,
Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS SQL
Server.
Upscene Productions
http://www.upscene.com
>
> Alter procedure nb_affectation(pilotenum smallint)
> returns(pilnb smallint,nb_aff smallint)
> as
> declare variable tour smallint;
> begin
>
> nb_aff=0;
> if ((pilotenum is null) OR (not exists (select 1 from pilote where
> idpilote=:pilotenum))) then
> exception data_error;
> else
> begin
>
> for select idpilote
> from affectation
> where
> idpilote=:pilotenum
> into : piln
> do
> begin
> nb_aff=nb_aff + 1;
> end
>
> suspend;
>
> end
> end !!
> set term; !!