I have a Listview that I want to populate with information from my SQLite database with and this seemed like the most practical solution. In my debugger it says it\'s caused
You are not including _id in your column list for the query you do in getSpinnerData().
_id
FYI,
You must be extending CursorAdapter which demand _id column.
_id is used only in CursorAdapter to determine which column is id. You can override this behavior in CursorAdapter or add alias in query to id.