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:
Malcolm Tredinnick 2009-04-11 07:51:07 +00:00
parent 3bd384aa62
commit 8fecf36b68
1 changed files with 3 additions and 3 deletions

View File

@ -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: