Subject Re: [IBO] NULL input in IBOQuery
Author Lucas Franzen
yaedos2000 schrieb:
> Hi,
>
> How can I set input a NULL value into an IBOQuery? I'm trying to do the
> following:

As in any other query component
>
> IBOQuery1.ParamByName('DATE1').AsDate := SomeDate;
> IBOQuery1.ParamByName('DATE2').AsDate := NULL;

IBOQuery1.ParamByName('DATE2').CLEAR;

Luc.