Answers for "delete data from database sqlite android"

SQL
0

delete data from database sqlite android

/*Put this in your DAO or in your activity*/

public void delete(int yourvariable){  /*<-----Note: I used Int but you can use what variable you want*/
  db.delete("yourtablename","yourcolumntodothewhere=" + yourvariable ,null);
}
Posted by: Guest on January-19-2022

Code answers related to "delete data from database sqlite android"

Code answers related to "SQL"

Browse Popular Code Answers by Language