add Evento para insert y update

This commit is contained in:
onsaliyo 2021-04-29 17:03:12 +02:00
parent 892a98a831
commit 540a8f23df
1 changed files with 4 additions and 4 deletions

View File

@ -56,16 +56,16 @@ module.exports.getDiscoteca = getDiscoteca;
async function addEvento(evento){
try{
let conn = await mariadb.getConn();
const lookup = await conn.query ("SELECT * FROM evento WHERE id = ?", [evento.id]);
var rows = await conn.query ("SELECT * FROM evento WHERE id = ?", [evento.id]);
conn.release();
if (!lookup){
const rows = await conn.query
if (!rows){
rows = await conn.query
("INSERT INTO evento (discotecaID, nombre, localizacion, fecha, hora, descripcion, precio1, precio2) VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
[evento.discotecaID, evento.nombre, evento.localizacion, evento.fecha, evento.hora, evento.descripcion, evento.precio1, evento.precio2]);
conn.release();}
else{
const rows = await conn.query
rows = await conn.query
("UPDATE evento SET discotecaID = ?, nombre = ?, localizacion = ?, fecha = ?, hora = ?, descripcion = ?, precio1 = ?, precio2 = ? WHERE id = ?",
[evento.discotecaID, evento.nombre, evento.localizacion, evento.fecha, evento.hora, evento.descripcion, evento.precio1, evento.precio2, evento.id]);
}