I am trying to compare cursor data, which is extracted from a SQLite database. It just has to be one column cursor.getString(1);
However, how can I check if that column has the same value in the next cursor row? (not the next column!) Using cursor.moveToNext();?
To paraphrase, I want to find a way to check column 1 for duplicate String entries using Cursor object.
DISTINCTin your query?