Changeset 2646

Show
Ignore:
Timestamp:
02/03/06 15:33:42 (18 years ago)
Author:
matt
Message:

Fix transaction BEGIN function

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/mysqlstorage.py

    r2645 r2646  
    6060    def beginTransaction(self) :     
    6161        """Starts a transaction.""" 
    62         self.database.begin() 
     62        self.cursor.execute("BEGIN;") 
    6363        self.tool.logdebug("Transaction begins...") 
    6464