Re: [SQLObject] Storing object from same table

2011-08-14 Thread Timo
On 13-08-11 15:43, Timo wrote: > Hello, sorry if I use the wrong terminology, I just started with > SQLObject and databases in general. > > This is my current class: > class Person(SQLObject): > name = StringCol(notNone=True) > father = StringCol(default='') > mother = StringCol(defaul

[SQLObject] Storing object from same table

2011-08-13 Thread Timo
Hello, sorry if I use the wrong terminology, I just started with SQLObject and databases in general. This is my current class: class Person(SQLObject): name = StringCol(notNone=True) father = StringCol(default='') mother = StringCol(default='') This stores the names for the person's f