Since you can load from *.inc and other files, you can also load from *.db3 files. You can load a comma-separated field with a string of words, and then break it apart like normal DATE.
In Pascal it looks like this:
I.AsString:='5'; ZQuery1.SQL.Text:='SELECT companyname FROM suppliers where supplierid='+I; ZQuery1.Open; Data1.AsString:=ZQuery1.Fields[0].Value;
in Data1- Ala,Ola,Ula,Ewa
by changing supplierid = 2 or 5 or 200 you decide which date you get.