Subject Re: [IBO] Reset params if a TIB_StoredProc
Author Helen Borrie
At 01:12 PM 6/05/2004 +0000, you wrote:
>sp.ExecProc();
>
>
>In the second case, if I do not assign "time" pameter but the former
>value is kept.So, STORED_NUMBER_2 stored procedure "reads"
>TIME=myTime.
>
>I have solve it doing: sp.ParamByName("TIME").Clear();
>
>But I am looking for a function to "reset" all parameters.

sp.Params.ClearBuffers;

Helen