Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 4, 2019 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a54e5ab55446256be0016a07bd1f6773 to your computer and use it in GitHub Desktop.
Save parzibyte/a54e5ab55446256be0016a07bd1f6773 to your computer and use it in GitHub Desktop.
public int eliminarMascota(Mascota mascota) {
SQLiteDatabase baseDeDatos = ayudanteBaseDeDatos.getWritableDatabase();
String[] argumentos = {String.valueOf(mascota.getId())};
return baseDeDatos.delete(NOMBRE_TABLA, "id = ?", argumentos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment