How do I do this when I press the save button and tell if the user already exists.
public void salvar(){
String comando = "";
if (this.getId() == -1){
comando = String.format("INSERT INTO cadastro (nomedousuario, senha)
VALUES ('%s','%s');");
}