Hello,
I'm french student and I'm apologize in advance for my English level...
I must record in Database a class collection containing bytes arrays.
I have three possibility :
-record directly the class in my table with I think BLOB format. (Each line = 1 object )
-record in several columns each bytes array with BLOB format. (Each line = 1 object , each Column = 1 Attribute)
-Convert all bytes arrays in string and record string in STRING format. (Each line = 1 object , each Column = 1 Attribute)
I started with SQLite technology and i would know the best record method from your experiences.
Thanks for your time. =)