[sqlalchemy] column_mapped_collection and insertion order preservation

2013-03-10 Thread Massi
Hi everyone, in my script I'm using column_mapped_collection to create a collection indexed by a column of a certain table. This is an example scenario (pseudo code): class Parent(object): def __init__(self): # define some fileds def AddChild(self, new_child):

Re: [sqlalchemy] column_mapped_collection and insertion order preservation

2013-03-10 Thread Michael Bayer
On Mar 10, 2013, at 10:28 AM, Massi massi_...@msn.com wrote: Hi everyone, in my script I'm using column_mapped_collection to create a collection indexed by a column of a certain table. This is an example scenario (pseudo code): class Parent(object): def __init__(self):