[sqlalchemy] Re: list of strings/unicode strings

2007-02-08 Thread Robert Gravina
On Feb 7, 2007, at 9:43 PM, Sébastien LELONG wrote: Is there anyway I can specify the list of tags like this, instead? book.tags = [upython, uprogramming] Well you could use a PickleType column in your book table... Of course, you'll loose functionnalities you could have using a real

[sqlalchemy] Re: list of strings/unicode strings

2007-02-08 Thread Robert Gravina
On Feb 8, 2007, at 5:38 AM, Christopher Arndt wrote: Cliff Wells schrieb: You could use another table for maintaining the tags and a property for maintaining them, like Lee does here: http://www.splee.co.uk/2006/10/28/simpleblog-part-3-many-to-many- relationships/ Here's another

[sqlalchemy] Re: list of strings/unicode strings

2007-02-07 Thread Sébastien LELONG
Is there anyway I can specify the list of tags like this, instead? book.tags = [upython, uprogramming] Well you could use a PickleType column in your book table... Of course, you'll loose functionnalities you could have using a real Tag object. The problem is how you consider a tag in your