i want to check the value of the database content using a cursor. I am able to get the content of the database but i can't correctly check if the data i want to add already exists on the database.
Here is a snippet of my code.
for(int i=1;i<=cursor.getCount();i++){
Cursor cursor = adapter.fetchAllQRurl();
cursor.moveToFirst();
if (!(contents.equals(cursor.getString(i)))){
adapter.addQRUrl(contents);
}
else{
Log.d("SAME ENTRY", "the url already exists");
}
cursor.moveToNext();
}
}
i used the for loop so i could check all the entries in the database. i don't seem to get the right values. the value of cursor.getString(i) seemed to be incorrect. when i hard coded the value of i, for instance cursor.getString(1), it only checks for the first entry on the database. but if "i" is the value for columnIndex, i am getting an exception. What could be the possible reason for this? thanks.
Is my code correct?
This is how i created my table:
db.execSQL("CREATE TABLE " + QRCODE_LINK + "(" + VidCallDbAdapter.KEY_ROWID + " INTEGER PRIMARY KEY AUTOINCREMENT, " + VidCallDbAdapter.QRLINK + " text, " + VidCallDbAdapter.KEY_INHISTORY + " text not null);" );