-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass_categoria_evento.py
38 lines (21 loc) · 997 Bytes
/
class_categoria_evento.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from database import *
class categoria_evento(object):
idCategoria = None
cat_evento = None
icono = None
@staticmethod
def cargar(id):
info = Database().run("Select * FROM categoria_evento WHERE idCategoria = '%s'" %(id))
categoria = categoria_evento()
for item in info:
categoria.idCategoria = item["idCategoria"]
categoria.cat_evento = item["cat_evento"]
categoria.icono = item["icono"]
return categoria
def alta(self):
Database().run("INSERT INTO categoria_evento Values (NULL, '%s', '%s')" %(self.cat_evento, self.icono))
def baja(self):
Database().run("DELETE FROM eventos WHERE idCategoria = '%s'" %(self.idCategoria))
Database().run("DELETE FROM categoria_evento WHERE idCategoria = '%s'" %(self.idCategoria))
def modificacion(self):
Database().run("UPDATE categoria_evento SET cat_evento = '%s', icono = '%s'"%(self.cat_evento, self.icono))