Also ich hab das jetzt nochmal probiert.
Jetzt sieht's so aus:
Delphi-Quellcode:
begin
WITH Query1
DO
BEGIN
Close;
WITH SQL DO
BEGIN
Clear;
Add('
SELECT * ');
Add('
FROM kosten');
Add('
WHERE abteilung = "' + Edit1.Text + '
"');
Add('
AND reihe = "' +edit2.Text+'
"');
Add('
AND nr <= ' + edit3.text);
END;
Query1.Active := True;
Open;
END;;
end;
Da kommt aber wieder:
Zitat:
'Keine Übereinstimmung der Typen im Ausdruck'