Subject | Re: [firebird-support] New FB1.5 feature example |
---|---|
Author | Ivan Prenosil |
Post date | 2004-06-07T14:09:54Z |
Expressions as SP arguments were not allowed in older versions, e.g.:
EXECUTE PROCEDURE ProcName( 1+1 );
Ivan
EXECUTE PROCEDURE ProcName( 1+1 );
Ivan
----- Original Message -----
From: "dleec45" <dleec45@...>
To: <firebird-support@yahoogroups.com>
Sent: Saturday, June 05, 2004 11:20 PM
Subject: [firebird-support] New FB1.5 feature example
> Can anyone give me an example of what is meant by this new feature
> from the Firebird_v1.5.ReleaseNotes.pdf on page 11.
>
> (1.5) Expressions and variables as procedure arguments
> Dmitry Yemanov
> Calls to EXECUTE PROCEDURE ProcName(<Argument-list>) and
> SELECT <Output-list> FROM ProcName(<Argument-list>) can now accept
> local variables (in PSQL) and
> expressions (in DSQL and PSQL) as arguments.
>
> Not for sure how to use this or what it means in it's scope of how to
> get the maximum use out of it. An example anyone!!