I have some data in SQLite, and I show them in a Table View, then I can reorder these data, now I have to save back them to SQLite.
I am using a easier way, read all data into a array, and keep the order, I will keep the order in array as the same as in table view. The problem is my data is veer large, it is not good to load all of them into memory, I want know if there is better way than mine?
I am using a easier way, read all data into a array, and keep the order, I will keep the order in array as the same as in table view. The problem is my data is veer large, it is not good to load all of them into memory, I want know if there is better way than mine?