From 29753749161d5eb9b89ceda3ecb0f7cf90f0160e Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 27 Feb 2007 01:14:01 +0000 Subject: [PATCH] =?utf8?q?Remover=20ByObject.=20SQLObject=20agrega=20un=20?= =?utf8?q?m=C3=A9todo=20getOne()=20a=20SelectResult=20(lo=20que=20devuelve?= =?utf8?q?=20el=20select()=20y=20selectBy),=20as=C3=AD=20que=20ahora=20en?= =?utf8?q?=20vez=20de=20hacer:=20MySQLObject.by(algo=3D1),=20hay=20que=20h?= =?utf8?q?acer:=20MySQLObject.selectBy(algo=3D1).getOne().=20Si=20el=20que?= =?utf8?q?ry=20devuelve=20m=C3=A1s=20de=20un=20elemento,=20lanza=20una=20e?= =?utf8?q?xcepci=C3=B3n=20SQLObjectIntegrityError.=20Si=20se=20especifica?= =?utf8?q?=20un=20default,=20si=20no=20se=20encontr=C3=B3=20nada=20devuelv?= =?utf8?q?e=20el=20default=20(A.select(algo=3D1).getOne(None)=20devuelve?= =?utf8?q?=20None=20si=20no=20se=20encontr=C3=B3=20nada,=20por=20ejemplo),?= =?utf8?q?=20si=20no=20lanza=20un=20SQLObjectNotFound.=20M=C3=A1s=20info:?= =?utf8?q?=20http://www.sqlobject.org/News.html#id1?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sercom/model.py | 35 +++++++++++++---------------------- 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/sercom/model.py b/sercom/model.py index 9124dde..b7353e5 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -109,16 +109,7 @@ def srepr(obj): #{{{ return obj #}}} -class ByObject(object): #{{{ - @classmethod - def by(cls, **kw): - try: - return cls.selectBy(**kw)[0] - except IndexError: - raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw) -#}}} - -class Curso(SQLObject, ByObject): #{{{ +class Curso(SQLObject): #{{{ # Clave anio = IntCol(notNone=True) cuatrimestre = IntCol(notNone=True) @@ -162,7 +153,7 @@ class Curso(SQLObject, ByObject): #{{{ % (self.anio, self.cuatrimestre, self.numero) #}}} -class Usuario(InheritableSQLObject, ByObject): #{{{ +class Usuario(InheritableSQLObject): #{{{ # Clave (para docentes puede ser un nombre de usuario arbitrario) usuario = UnicodeCol(length=10, alternateID=True) # Campos @@ -267,7 +258,7 @@ class Alumno(Usuario): #{{{ self.telefono, self.activo, self.creado, self.observaciones) #}}} -class Tarea(InheritableSQLObject, ByObject): #{{{ +class Tarea(InheritableSQLObject): #{{{ class sqlmeta: createSQL = r''' CREATE TABLE dependencia ( @@ -332,7 +323,7 @@ CREATE TABLE dependencia ( return self.nombre #}}} -class Enunciado(SQLObject, ByObject): #{{{ +class Enunciado(SQLObject): #{{{ class sqlmeta: createSQL = r''' CREATE TABLE enunciado_tarea ( @@ -439,7 +430,7 @@ class CasoDePrueba(SQLObject): #{{{ return '%s:%s' % (self.enunciado.shortrepr(), self.nombre) #}}} -class Ejercicio(SQLObject, ByObject): #{{{ +class Ejercicio(SQLObject): #{{{ # Clave curso = ForeignKey('Curso', notNone=True) numero = IntCol(notNone=True) @@ -466,7 +457,7 @@ class Ejercicio(SQLObject, ByObject): #{{{ self.enunciado.shortrepr()) #}}} -class InstanciaDeEntrega(SQLObject, ByObject): #{{{ +class InstanciaDeEntrega(SQLObject): #{{{ class sqlmeta: createSQL = r''' CREATE TABLE instancia_tarea ( @@ -540,7 +531,7 @@ CREATE TABLE instancia_tarea ( return self.numero #}}} -class DocenteInscripto(SQLObject, ByObject): #{{{ +class DocenteInscripto(SQLObject): #{{{ # Clave curso = ForeignKey('Curso', notNone=True) docente = ForeignKey('Docente', notNone=True) @@ -568,7 +559,7 @@ class DocenteInscripto(SQLObject, ByObject): #{{{ return self.docente.shortrepr() #}}} -class Entregador(InheritableSQLObject, ByObject): #{{{ +class Entregador(InheritableSQLObject): #{{{ # Campos nota = DecimalCol(size=3, precision=1, default=None) nota_cursada = DecimalCol(size=3, precision=1, default=None) @@ -645,7 +636,7 @@ class AlumnoInscripto(Entregador): #{{{ return self.alumno.shortrepr() #}}} -class Tutor(SQLObject, ByObject): #{{{ +class Tutor(SQLObject): #{{{ # Clave grupo = ForeignKey('Grupo', notNone=True) docente = ForeignKey('DocenteInscripto', notNone=True) @@ -663,7 +654,7 @@ class Tutor(SQLObject, ByObject): #{{{ return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr()) #}}} -class Miembro(SQLObject, ByObject): #{{{ +class Miembro(SQLObject): #{{{ # Clave grupo = ForeignKey('Grupo', notNone=True) alumno = ForeignKey('AlumnoInscripto', notNone=True) @@ -682,7 +673,7 @@ class Miembro(SQLObject, ByObject): #{{{ return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr()) #}}} -class Entrega(SQLObject, ByObject): #{{{ +class Entrega(SQLObject): #{{{ # Clave instancia = ForeignKey('InstanciaDeEntrega', notNone=True) entregador = ForeignKey('Entregador', default=None) # Si es None era un Docente @@ -727,7 +718,7 @@ class Entrega(SQLObject, ByObject): #{{{ self.codigo) #}}} -class Correccion(SQLObject, ByObject): #{{{ +class Correccion(SQLObject): #{{{ # Clave instancia = ForeignKey('InstanciaDeEntrega', notNone=True) entregador = ForeignKey('Entregador', notNone=True) # Docente no tiene @@ -752,7 +743,7 @@ class Correccion(SQLObject, ByObject): #{{{ return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr()) #}}} -class TareaEjecutada(InheritableSQLObject, ByObject): #{{{ +class TareaEjecutada(InheritableSQLObject): #{{{ # Clave tarea = ForeignKey('Tarea', notNone=True) entrega = ForeignKey('Entrega', notNone=True) -- 2.43.0