I need to implement SQLite in my application. I followed this tutorial.. Creating and using databases in Android one
Everything is working fine. I inserted 1 row wit
You can use the code below.
String strFilter = "_id=" + Id; ContentValues args = new ContentValues(); args.put(KEY_TITLE, title); myDB.update("titles", args, strFilter, null);