tags:

views:

22

answers:

1

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
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
Great idea: it works , thanks a lot
EgyEast