Ok so I have a name, a time/data, and an array...
so in my database I store in the table, the:
name, time/data, but the array?
This array doesn't have a fixed size... It is an array of tuples (x,y) <- even thats an array
I want to associate the name and time/date with this array. I heard its not good and impossible to store an array in a database, I'm using sqllite3..
How do I solve this problem? Do I just let the name and timedate table point to a newly constructed table for the array?