Subject | Re: "Invalid Request Handle" with stored procedures |
---|---|
Author | pg_waspy |
Post date | 2003-09-15T20:06:28Z |
--- In firebird-support@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> Nothing so ugly!Ah! Much better. Thanks muchly!
>
> Think of your SP's output set as if it were a table. The only difference
> is that, if your proc has input arguments, you need to include them.
>
> SELECT * FROM Myproc(Arg1, Arg2, ....);
>
> More typically, from object interfaces:
>
> SELECT * FROM Myproc(:param1, :param2,...);
> or however your object passes parameters.
>
> heLen