Subject Re: [IBO] Using tibStoredProc
Author bmckee
--- In IBObjects@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> 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

Thanks!! That worked perfectly - How about another - Do I need to
define a different tib_Connection for each thread in my program that
accesses the database?