Doug Woos wrote: > I think the time has come for this group to stop feeding the Troll. > > Doug Woos
Of course it was time for this ridiculous troll-comment. But I'll stop myself, I've really enouth from this counter-productive twisting of facts. Just one more pointer: http://www.djangoproject.com/documentation/model_api/ it contains a little bit more clarity: class Album(models.Model): artist = models.ForeignKey(Musician) name = models.CharField(maxlength=100) release_date = models.DateField() num_stars = models.IntegerField() but could become even clearer: class Album(odb.Object): artist = odb.has.One(Musician) name = odb.data.Char(maxlength=100) release_date = odb.data.Date() num_stars = odb.data.Integer() so, at least when you don't follow an industry standard, just provide some basic level of OO usability. - I hope to see soon a dedicated project which tries to solve this python persistency desaster. . --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

