I’ve got a ArrayList or Vector with this structure
ArrayList = value1 value2 value3 value4 value5, value1_1 value2_1 value3_1 value4_1 value5_1, [...]
up to value1_200 (variable, but in this size).
I want to insert every value in one column. My database structure:
value1 VARCHAR, value2 VARCHAR, value3 VARCHAR, value4 VARCHAR, value5 VARCHAR
Should I use BLOB and how can I insert it into an SQLite DB? (Every value set should be into one row)
Solved it on my own, converted the
ArrayListtoStringand inserted it with this method.