Subject Re: [IBO] Using tibStoredProc
Author Helen Borrie
At 12:39 AM 15/04/2004 +0000, you wrote:
>I am brand new at ibobject and firebird but long time programmer. I
>am trying to use a tibStoredProc component to execute a stored
>procedure that has 2 input and 1 output parameters. The procedure
>executes ok but I can't retrieve the output parameter. I am trying to
>use params.parmvalues property to acces it with no luck is there
>another way to do this?

Params[] = input parameters
Fields[] = ouput parameters

So, after execution, read Fields[0].AsWhatever

Helen