Subject RE: [IBO]Parameter values in DeleteSQL
Author Paul Hope
> > > Sure I could. Then in Delphi I would have
> > > if eWHS.Text='' then
> > > paramByName('WHS').AsString:=' ' else
> > > paramByName('WHS').AsString:=eWHS.Text;
> >
> >
> > or just:
> >
> > paramByName('WHS').AsString := eWHS.Text + ' '[1];
> >
> >
> > Luc.
> >
>
> pure elegance Lucas... bet it runs fast too.
> Alan
>
Ah - but my brain runs slow. It will take me longer to work out what it is
doing ;-)
But it IS very nice, almost worth the inconvenience of having to do it at
all.
Paul