You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

16 lines
374 B

const nome = _req.getString('nome')
if (_db.queryFirst(`SELECT * FROM produto WHERE nome = ?`, nome)) {
_out.println('<h1 style="color: red;">O produto '+ nome +' já existe!</h1>')
_exec.stop()
}
_db.execute(`
INSERT INTO produto(nome, categoria_id)
VALUES(?, 1)
`, nome)
_out.println('<h1 style="color: green;">Produto '+ nome +' salvo com sucesso!</h1>')