I\'ve been working with SQLite on android and I would like to add an arraylist to a column in a table, and then fetch the data back as an arraylist. The arraylist is a list
You'll have to do it manually, go through each item in the list and change it to byte before storing it in the database
for (long l : array){ //change to byte here //Store in database here }