Guest User

Untitled

a guest
Jan 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public boolean ComprobarCodiArticulo(long id){
  2. boolean Existe = true;
  3.  
  4. Cursor resultadoSelect = dbRead.rawQuery("SELECT " + ARTICLES_codiArticulo + " FROM " + table_ARTICLES + " WHERE " + ARTICLES_codiArticulo + "=" + LLAMAR A TEXTVIEW, null);
  5.  
  6. if(resultadoSelect.getCount()<=0){
  7. Existe =false;
  8. }
  9. else{
  10. Existe =true;
  11. }
  12. return Existe ;
  13. }
  14.  
  15. if(bd.ComprobarCodiArticulo(idTask) == true){
  16. Toast.makeText(this, "Este codigo ya existe", Toast.LENGTH_SHORT).show();
  17. }
Add Comment
Please, Sign In to add comment