Re: Delphi SQL string problem

Posted by Alex on April 17, 2005

In Reply to: Delphi SQL string problem posted by Harry711 on March 04, 2005

I just had the same problem.

Here's how I solved it:

IBKasaQuery.SQL.Add('SELECT NOMER,FULLNAME,EGN,ADDRESS
  from Abonati 
  where FULLNAME LIKE ''%'+name+'%'';');

Hope it's not too late.