1. 05 Jun, 2009 1 commit
  2. 04 Jun, 2009 1 commit
  3. 29 May, 2009 1 commit
  4. 26 May, 2009 2 commits
  5. 17 May, 2009 3 commits
  6. 16 May, 2009 1 commit
  7. 11 May, 2009 1 commit
  8. 04 May, 2009 5 commits
  9. 30 Apr, 2009 7 commits
  10. 28 Apr, 2009 5 commits
  11. 27 Apr, 2009 2 commits
    • Jim Fulton's avatar
      ace0e8a9
    • Jim Fulton's avatar
      - Databases have a new method, transaction, that can be used with the · 3a26b7b4
      Jim Fulton authored
        Python (2.5 and later) with statement::
      
      db = ZODB.DB(...)
           with db.transaction() as conn:
                # ... do stuff with conn
      
      This uses a private transaction manager for the connection.
        If control exists the block without an error, the transaction is
        committed, otherwise, it is aborted.
      
      - Connections now have a public ``opened`` attribute that is true when
        the connection is open, and false otherwise.  When true, it is the
        seconds since the epoch (time.time()) when the connection was
        opened. This is a renaming of the previous ``_opened`` private
        variable.
      3a26b7b4
  12. 24 Apr, 2009 5 commits
  13. 17 Apr, 2009 1 commit
  14. 15 Apr, 2009 1 commit
  15. 12 Apr, 2009 1 commit
  16. 11 Apr, 2009 1 commit
  17. 10 Apr, 2009 2 commits