Hello , I've an access database. i want to create a column in my table in which fields can store array or collection of strings or numbers etc.. For example i created a table Cars : Model (String) , Colors_Available(array of strings). Is that possible in Microsoft Access ? please help .
+2
A:
Hey,
I don't think it is; the alternative is to store it as text separated by comma, and in your code, split it before you access it.
HTH.
Brian
2010-08-28 23:57:01
This is correct +1, a delimited string would be fine. Consider using a separate table. You can embed objects, but that would be overkill.
MikeAinOz
2010-08-29 00:01:55
Great idea: it works , thanks a lot
EgyEast
2010-08-29 00:01:59