android edit data from sqlite database

www.‮ruttual‬i.com
android edit data from sqlite database
//Put this in your DAO or Activity

public void alteraTarefa(yourclass yourclass){
ContentValues contentValues=new ContentValues();
contentValues.put("yourdbcolumn",yourclass.getyourvaluefromclass());
contentValues.put("yourdbcolumn",yourclass.getyourvaluefromclass());
contentValues.put("yourdbcolumn",yourclass.getyourvaluefromclass());

db.update("yourtable",contentValues,"your_column_name_to_do_the_where="+ yourclass.getyourvaluefromclass(),null);
/*<------ NOTE: if you do the where with a string instead of int you have to do the where with the '' */ 
}
Created Time:2017-09-04 22:59:28  Author:lautturi