Subject Re: "Invalid Request Handle" with stored procedures
Author pg_waspy
--- In firebird-support@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> Nothing so ugly!
>
> 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

Ah! Much better. Thanks muchly!