Cursor.moveToNext without moveToFirst
android, java, sqlite
Solution
Yes, it will work, `moveToNext` actually call `moveToFirst`
Problem
Will the next code work as expected? ``` Cursor c = db.query(tableName, requestedColumns, condition, conditionParams, null, null, sortOrder); while(c.moveToNext()) { //do stuff with rows } ``` The examples I found so far suggest calling `c.moveToFirst()` prior looping, but is it really necessary?