Fixed #10450 -- Fixed an initialisation problem in the savepoint code.
Patch from Jeremy Dunck. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10511 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3bd384aa62
commit
8fecf36b68
|
@ -59,17 +59,17 @@ class BaseDatabaseWrapper(local):
|
|||
def _savepoint(self, sid):
|
||||
if not self.features.uses_savepoints:
|
||||
return
|
||||
self.connection.cursor().execute(self.ops.savepoint_create_sql(sid))
|
||||
self.cursor().execute(self.ops.savepoint_create_sql(sid))
|
||||
|
||||
def _savepoint_rollback(self, sid):
|
||||
if not self.features.uses_savepoints:
|
||||
return
|
||||
self.connection.cursor().execute(self.ops.savepoint_rollback_sql(sid))
|
||||
self.cursor().execute(self.ops.savepoint_rollback_sql(sid))
|
||||
|
||||
def _savepoint_commit(self, sid):
|
||||
if not self.features.uses_savepoints:
|
||||
return
|
||||
self.connection.cursor().execute(self.ops.savepoint_commit_sql(sid))
|
||||
self.cursor().execute(self.ops.savepoint_commit_sql(sid))
|
||||
|
||||
def close(self):
|
||||
if self.connection is not None:
|
||||
|
|
Loading…
Reference in New Issue