Hallo Delphianer,
ich habe eine
SQL Abfrage in der Form:
Select * from tools where location in (1,2,3)
Wie kann ich die Parameter als Menge an die
Query übergeben, so a la:
SQL.Text:=Select * from tools where location in (:location)
location:=[1,2,4];
IBQuery1.ParamByName('Location').Value:=location
Gruß Rainer