alright, So when i call
ourDatabase.delete(DATABASE_TABLE, KEY_ROWID + "=" + lrow, null);
which is a delete function for my database, it works and deletes the long i send to it as lrow, the problem i have is then when it deletes the one i pick it leaves all the numbers in the database the same. example i have a list of words 1-10 in a database it shows "1,2,3,4,5,6,7,8,9,10". I delete number 4 and then in the list showing the word it shows "1,2,3,5,6,7,8,9,10" - No 4. Is there anyway this can be fixed and have it count the new amount i have and reset the database. so it would show "1,2,3,4,5,6,7,8,9"
How i get the data is through an array that has each length of the words in my database.
Hope you understand, if not post a comment!