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
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
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