Re: [SQLObject] Problem with a related join.

2008-06-16 Thread Diez B. Roggisch
> The problem is that when the record is created for the table > article_tag the created field is not set to the default. Is there > something obvious I am missing or is what am am doing not possible ? Not in that way, no. A bit unfortunately, SO has no concept of declaration for intermediate tab

Re: [SQLObject] Problem with a related join.

2008-06-13 Thread Simon Cross
Hi Fred, On Thu, Jun 12, 2008 at 8:20 PM, Fred C <[EMAIL PROTECTED]> wrote: > I am trying to create a related join with a creation date. After digging on > google. I found an example looking a little bit like that. Despite the example in the FAQ [1] it looks like this isn't directly supported by

[SQLObject] Problem with a related join.

2008-06-12 Thread Fred C
Hello Gang, I am trying to create a related join with a creation date. After digging on google. I found an example looking a little bit like that. class Tags(SQLObject): term = UnicodeCol(length=64, alternateID=True, alternateMethodName='by_term') articles = SQ