After creating a standard SQLite cursor, I'm iterating thru the entries using:
while (cursor.moveToNext()) {
}
All the rows are being processed correctly.
All the documentation I've read states you need to issue a moveToFirst()
to ensure
that you're pointing to the first entry of the cursor set.
Is this working even though it shouldn't, and another release may not have the same processing?