Saving ArrayLists in SQLite databases

前端 未结 6 2253
傲寒
傲寒 2020-11-30 03:42

So I want to save an ordered set of double values, and I want to be able to insert, retrieve or delete any value from this easily. As of such, I\'m using a an ArrayList, whe

6条回答
  •  死守一世寂寞
    2020-11-30 03:57

    I suggest going through all 3 Notepad tutorials you want to store the values your storing to a database table. you don't store the actual array directly into the database just the data. but you shouldn't actually need to use an array at all instead of adding a new item to the array instead call your db insert method

提交回复
热议问题