Re: [sqlalchemy] Delay in getting the response object and populating data to UI page using Python, SQLAlchemy, MySQL

2011-07-28 Thread Fayaz Yusuf Khan
On Wednesday 15 Jun 2011 11:44:32 AM Bala wrote: def write(self, params): if 'id' in params: ticket = self.dao.FindByID(Ticket, params['id'][0]) ticket.modified = datetime.datetime.now() else:

[sqlalchemy] Delay in getting the response object and populating data to UI page using Python, SQLAlchemy, MySQL

2011-06-15 Thread Bala
def write(self, params): if 'id' in params: ticket = self.dao.FindByID(Ticket, params['id'][0]) ticket.modified = datetime.datetime.now() else: ticket = Ticket() # Mark ticket