On Oct 28, 2008, at 1:57 PM, Doug Farrell wrote:
> > Michael, > > I'm not sure why the ConcurrentModification is occurring at all, my > application doesn't use threads. I'll look into issuing the rollback() > call and see how that helps my app. the "concurrent" ness of the error only means two different actors deleted the same row. they can be in the same thread. > this module to create their own session objects. By the way, with > locally scoped session variables should I do a session.close() or not? sessions close themselves implicitly when they fall out of scope. close() is useful just to ensure the connection resources and objects are freed immediately. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
