SOStor

SQLObject storage medium.

Arguments

so_class: the SQLObject class to actually stor with

Keyword Arguments

autocommit -- when False (the default) everything is performed within a transaction until SOStor.clean is called. When True, everything is still within a transaction but it is committed upon SOStor.save . Autcommit mode seems to be necessary to work around instances where postgresql would deadlock if you are working with lots of foreign keyed fixtures within transactions


Methods

f __init__(self, so_class, autocommit=False) ...

f clean(self) ...

f close(self) ...

f save(self, **kw) ...

See the source for more information.