Dann würde ich eine Tabellenstruktur in der Art vorschlagen
Code:
ID BigInt PK
NAME VarChar(64)
CRC Char(xx)
IMG1 Blob Subtype 0
IMG2 Blob Subtype 0
Mit weiteren Index über NAME und CRC
Abfragen kann man dann mit
SQL-Code:
select
IMG1, IMG2
from
Projekte
where
NAME = :name and CRC = :CRC;