Du kannst eine Konstante nur aus Konstanten zusammensetzen - und QuotedStr() ist eine Funktion. Wenn du dein
SQL-Statement als Konstante vorhalten willst, dann so:
Delphi-Quellcode:
const
sel
= 'select Order as "Order", Client, Article as "Style", pieces, prepair, prepconfirm as "HK conf.", '
+ 'prepout as "Prep.fin.", plancutting, plansewing, planfinishing, observations as "Remarks" '
+ 'from orders where prepair <> ''no'' and sewingout is null '
;
BTW warum speicherst du Literale wie 'no' in deiner Datenbank? Wäre da ein boolean nicht besser geeignet?
Freundliche Grüße