Changeset 2646
- Timestamp:
- 02/03/06 15:33:42 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/mysqlstorage.py
r2645 r2646 60 60 def beginTransaction(self) : 61 61 """Starts a transaction.""" 62 self. database.begin()62 self.cursor.execute("BEGIN;") 63 63 self.tool.logdebug("Transaction begins...") 64 64