I am using a while loop to iterate through a cursor and then outputing the longitude and latitude values of every point within the database.
For some reason it is n
Cursor c=null; c=......; try { if (c!=null) { for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) { } } } finally { if (c!=null) { c.close(); } }