Hi Chris, did you try to turn on Database logging? Is a commit statement issued after the changes? AFAIK only exposed methods (see http://docs.turbogears.org/1.0/ExposeDecorator) get the convenient automatic transaction support and a scheduled task is probably not a candidate for the expose decorator.
If you're missing the commit, do something along the lines: def scheduled_method(): conn = hub.begin() # do you're DB changes here hub.commit() hub.end() Regards Puck --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

