In my application I need to add and edit data to the SQLite database. When I do update data function app do not give any errors but my database wont update. Here is my Updat
Your function returns 1; that's not ok... it should return ContentValues cv
return db.update(DATABASE_TABLE, cv, KEY_ROWID+"="+rowId, null)