[sqlalchemy] Re: Missing UPDATE on Parent

2009-02-10 Thread Massimo Bonvicini
I found that setting: def scan(self): if self.isAlive(): self.scantime = datetime.now() < Explicit call to update the record It works and update the record field. --~--~-~--~~--

[sqlalchemy] Missing UPDATE on Parent

2009-02-05 Thread Massimo Bonvicini
Hi guys, I managed to model a device scanner based on SA 0.5.2. Everything works fine on the first run, but when i rerun a scan to refresh data (specially Client.scantime) i do not see any UPDATE statement called on clients table. What's wrong with my design? Thanks in advance Massimo Follow m