On Wed, Apr 30, 2008 at 11:30 AM, Michael Bayer
<mike...@zzzcomputing.com> wrote:
flush() always uses a transaction, so when your pdb process hits, the
transaction has not been committed yet and results are not visible
outside of the transaction. the "transactional" keyword on Session
does not mean "don't use transactions at all", it means "don't
automatically enter a transaction outside of a flush". Its been
renamed to "autocommit" in 0.5.
Ah, yeah, that would do it. Any suggestions for other hooks that
might do what I'm looking for, or should I just handle this myself
before and after the flush?