Changeset 3326
- Timestamp:
- 08/23/07 09:31:28 (1 year ago)
- Files:
-
- trunk/dabo/db/dbSQLite.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/db/dbSQLite.py
r3323 r3326 55 55 pth = os.path.expanduser(connectInfo.Database) 56 56 pth = pth.decode(sys.getfilesystemencoding()).encode("utf-8") 57 self._connection = self.dbapi.connect(pth, factory=DictConnection) 57 # Need to specify "isolation_level=None" to have transactions working correctly. 58 self._connection = self.dbapi.connect(pth, factory=DictConnection, isolation_level=None) 58 59 return self._connection 59 60
