Y.A.N.Q. (yet another n00b question).
I have managed to design my db, defining tables & columns. I have even got code to access the db, yay!
Now, one bit that I haven't yet gotten to in the "MySql weekend crash course".
Let's say that I want to store something like "notes" which is a TStringList sort of thing. A list of strings which might be a different number of strings every time I submit a new set of data to the db.
How should I best handle that? Should I just concatenate the strings into one when writing and split them when reading back out? That way I would only need one TEXT column.
Or is there a preferred way?