String new_recorded_lastname=\"a lastname\";
////record to database......
Cursor cursor = db.rawQuery(\"SELECT lastname FROM people; \",null);
if (curs
It seems to me that you are checking every record in the database, and as soon as you find one that does not contain the given lastname you add the record to the database. You should accumulate the results of the checks, something like this:
boolean lastnamePresent = false;
while(cursor.moveToNext()){
String recorded_lastname=cursor.getString(cursor.getColumnIndex("lastname"));
if(recorded_lastname.equals(new_recorded_lastname)){
lastnamePresent = true;
break;
}
}
if(!lastnamePresent)
// add new_record_lastname to database
Though it would sure be better if you use SQLite tools to handle this kind of stuff. Like setting the column to UNIQUE
.