das problem kommt dann wenn ich in eine select anweisung 5! tabellen einbauen muss wie eben hier:
Delphi-Quellcode:
if not frmhaupt.CheckBox1.Checked and frmhaupt.CheckBox2.Checked and
frmhaupt.CheckBox3.Checked then
dm.dsetbilder.SelectSQL.Add('select * from zwbilderprogramme z, '+
'bilder b, programme p,zwbildertags x, tags t '+
'where ((b.bid=z.bildid and p.pid=z.programmid) ' +
'and (b.bid=x.bildid and t.tid=x.tagid)) '+
'and (p.namep containing UPPER(:WERT) or t.namet '+
'containing upper(:WERT) or x.id is null) order by upper(b.name)');