On Thu, Oct 2, 2008 at 8:53 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > So, both del and commit don't seem to be working. >
I jump in the middle of the conversation and may have missed some things but... session.del(obj) session.flush() may work better and generally if you want to session.commit() you need to session.begin() first. _but_ take care that inside a controller a session.begin() will have been already done automatically for you and a session.commit() will be executed if the controller did not raise exceptions. This is an incomplete and way to short explanation but I hope it will help you somewhat :) Florent. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

