Subject Re: [IBO] IBOQuery Locate bug IBO 4.6A
Author Woody
From: "Salvatore Besso" <s.besso@...>
> hi Johannes,
>
> I'm sorry but from
>
> if not Prepared or not SQLIsValid then
>
> to
>
> if (not Prepared) or (not SQLIsValid) then
>
> absolutely nothing changes. The two statements are absolutely equal and
> both return the same result.

It could also be changed to :

if not (Prepared and SQLIsValid) then

All those statements are the same and shouldn't change the result...

Woody (TMW)