Subject RE: RE: [firebird-support] Can't execute a procedure that has a output parameter
Author Helen Borrie
At 10:38 15/09/2008, you wrote:
>
>
>Thanks, but I don't want to receive returning value.

You have 2 choices:

Either
-- declare a variable in the calling procedure to receive the output value from CMD_FILIFO_ENTRY and then ignore it

or

-- alter the called procedure CMD_FILIFO_ENTRY to remove the RETURNS() clause.

Either way, you will have to recompile the calling procedure.

./heLen