Re: [SQLObject] Transaction and cache in r1581

2006-02-08 Thread Justin Azoff
Luke Opperman wrote: Quoting John Speno <[EMAIL PROTECTED]>: As all of our sqlobjects have 'cacheValues = False' set. Obviously, this didn't help the transaction problem before the fix, bu should the fix introduced in r1581 to cache.py fix our inconsistency problems? The fix in r1581 was ori

Re: [SQLObject] Problems with transaction-objects' persistence

2006-02-01 Thread Justin Azoff
Franz Pletz wrote: Hello, I'm currently using sqlobject (current svn) in conjunction with cherrypy (also current svn) and postgresql 8.1 for a project where I experienced some problems while using transactions with quite a few concurrent users. Sounds familiar... I have to use the attached p

Re: [SQLObject] using foreign keys in select has and incongruent behaviour

2006-01-19 Thread Justin Azoff
Pau Aliagas wrote: I have two tables: class handset_brand(SQLObject): brand = StringCol(alternateID = True, length = 50) handsets = SQLMultipleJoin('handset') class handset(SQLObject): handset_brand = ForeignKey('handset_brand') model = StringCol(alternateID = T