Saving Data on Android - Part 21: Reading Data | Ray Wenderlich

Use Cursor and and its companion CursorWrapper to read data from the SQLite database and into model objects.


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/4561-saving-data-on-android/lessons/21

my drops show up on the map after completing this lesson. But they do not show up in the list of drops nor do they persist after closing the app and restarting. I’ve followed the lesson several times, but can not figure out what’s going wrong.

problem solved. I missed one space character before text.
I changed from this:
DropTable.Columns.ID + "text, " +

to this:
DropTable.Columns.ID + " text, " +

Sounds good @tommybomb! Thanks for writing in!