Dann würde ich eine Tabellenstruktur in der Art vorschlagen
Delphi-Quellcode:
Query.SQL.Text := '
select BILD1, BILD2 from project where NAME = :name and CRC = :CRC;';
Query.Params.ParamByName('
NAME').DataType := ftString;
Query.Params.ParamByName('
NAME').Value := MeineNameVariable;
Query.Params.ParamByName('
CRC').DataType := ftWord;
Query.Params.ParamByName('
CRC').Value := MeineCRCWordVariable;
Query.Open;
// hier bild1 oder bild2 laden usw.
So in etwa hatte ich mir das gedacht könnte es funktionieren.