[sqlalchemy] Re: Immediate access to value of a new object's Sequence primary key column?

2013-11-06 Thread Jonathan Vanasco
You missed adding the object to the session, before the flush. this should work: new_foo = Foo('red') dbSession.add(new_foo) dbSession.flush() print new_foo.id -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To unsubscribe from

RE: [sqlalchemy] Re: Immediate access to value of a new object's Sequence primary key column?

2013-11-06 Thread Michael Nachtigal
of Jonathan Vanasco [jonat...@findmeon.com] Sent: Wednesday, November 06, 2013 2:01 PM To: sqlalchemy@googlegroups.com Subject: [sqlalchemy] Re: Immediate access to value of a new object's Sequence primary key column? You missed adding the object to the session, before the flush. this should work