Hallo Budda!
Übersichtlicher wird datt ganze mit der Fkt Format. Das like wird nur bei Bedarf gesetzt (ungetestet):
Delphi-Quellcode:
S:=Edit1.Text;
Sep:='=';
If S[1]='*' Then Begin S[1]:='%'; Sep:='like'; End;
L:=Length(S);
If S[L]='*' Then Begin S[L]:='%'; Sep:='like'; End;
ADOQuery1.SQL.Add(S:=Format('Select * From %s Where %s %s "%s"',[ComboBox1.Text,ComboBox2.Text,Sep,S]));
Gruss
OLLI