Mercurial > p > roundup > code
diff roundup/backends/back_sqlite.py @ 1491:393ab6e36540 maint-0.5
fixed sqlite rollback/caching bug [SF#689383]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 06 Mar 2003 05:46:57 +0000 |
| parents | 83f33642d220 |
| children |
line wrap: on
line diff
--- a/roundup/backends/back_sqlite.py Thu Mar 06 04:37:51 2003 +0000 +++ b/roundup/backends/back_sqlite.py Thu Mar 06 05:46:57 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: back_sqlite.py,v 1.8 2002-12-12 09:31:04 richard Exp $ +# $Id: back_sqlite.py,v 1.8.2.1 2003-03-06 05:46:57 richard Exp $ __doc__ = ''' See https://pysqlite.sourceforge.net/ for pysqlite info ''' @@ -78,6 +78,9 @@ self.rollbackStoreFile(*args) self.transactions = [] + # clear the cache + self.clearCache() + def __repr__(self): return '<roundlite 0x%x>'%id(self)
