15 lines
476 B
Plaintext
Executable File
15 lines
476 B
Plaintext
Executable File
insert into evento
|
|
(lugar_id, fecha_inicio, fecha_fin, precio, promocion, promo_estado, curso_id, imagen_chica, estado)
|
|
values(
|
|
?, # eplace
|
|
concat(?,"-",?,"-",?), # yini - mini - dini
|
|
concat(?,"-",?,"-",?), # yend - mend - dend
|
|
?, # cost ,
|
|
?, # promo ,
|
|
case ? when "on" then 1 else 0 end, # pen
|
|
?, # ecourse ,
|
|
?, # eimg ,
|
|
case ? when "on" then 1 else 0 end # een
|
|
);
|
|
|