(Gast)
n/a Beiträge
|
Re: [ADO] Attribut IS IN (:Parameter) - Funktioniert nicht
5. Jan 2009, 14:00
Hallo,
mach's doch so:
Delphi-Quellcode:
fCommandText : String; // Als Property der Klasse.
[...]
// Im Konstruktor statt FDSIDList.CommandText := ...
fCommandText := 'SELECT * FROM Cards WHERE ID IN (:IDList)';
[...]
// FDSIDList.Parameters.ParamByName('IDList').Value := IDs;
// stattdessen
FDSIDList.CommandText := AnsiReplaceText(fCommandText,':IDList',IDs);
|
|
Zitat
|