moveToNext and moveToFirst sqlite cursor

Honestly, I've never recognized every top record is missing when I retrieve data from sqlite table. It's really bad when someone point out that one record is missing even it's in sqlite table. That's why got stressed that how come every one top record is missing by following coding.

view plain print about
1while(cursor.moveToNext()){                                  
2    startfrom = Integer.parseInt(cursor.getString(0));
3}

[More]

Planet Myanmar Dictionary Android version

Today I've published my another Android application to Android market which called "Planet Myanmar Dictionary". Planet Myanmar Dictionary is dedicated to our Planet user who would like to use Planet Dictionary through their Android OS based mobile phone without accessing Internet. It's easy to search and save your favorite word in their mobile. In this application, I've used SQLite as storage engine. Honestly, I'm very very new to SQLite and don't have much experience of it. But I'm very glad to touch SQLite and data manipulate.

[More]

Top of Page