I am trying to copy a database that I made with SQLite manager, in which I did:
CREATE TABLE \"android_metadata\" (\"locale\" TEXT DEFAULT \'en_US\')
Before you start reading the consecutive values by using c.moveToNext() , set the cursor to the initial position, that is the beginning of your database.
c.moveToNext()
c.moveToFirst()
and then start reading form it.
Might solve your problem.