Fixes #2658 -- Modified SQLite cursor close() method for in-memory databases, making the lifespan of an in-memory database equal to the life of the process, rather than the life of the cursor. Thanks, Ned Batchelder.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3723 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6417d6c7c3
commit
6f87b17a0d
|
@ -62,7 +62,10 @@ class DatabaseWrapper(local):
|
||||||
self.connection.rollback()
|
self.connection.rollback()
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
if self.connection is not None:
|
from django.conf import settings
|
||||||
|
# If database is in memory, closing the connection destroys the database.
|
||||||
|
# To prevent accidental data loss, ignore close requests on an in-memory db.
|
||||||
|
if self.connection is not None and settings.DATABASE_NAME != ":memory:":
|
||||||
self.connection.close()
|
self.connection.close()
|
||||||
self.connection = None
|
self.connection = None
|
||||||
|
|
||||||
|
|
|
@ -95,10 +95,11 @@ def destroy_test_db(old_database_name, verbosity=1):
|
||||||
# connected to it.
|
# connected to it.
|
||||||
if verbosity >= 1:
|
if verbosity >= 1:
|
||||||
print "Destroying test database..."
|
print "Destroying test database..."
|
||||||
|
connection.close()
|
||||||
|
TEST_DATABASE_NAME = settings.DATABASE_NAME
|
||||||
|
settings.DATABASE_NAME = old_database_name
|
||||||
|
|
||||||
if settings.DATABASE_ENGINE != "sqlite3":
|
if settings.DATABASE_ENGINE != "sqlite3":
|
||||||
connection.close()
|
|
||||||
TEST_DATABASE_NAME = settings.DATABASE_NAME
|
|
||||||
settings.DATABASE_NAME = old_database_name
|
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
_set_autocommit(connection)
|
_set_autocommit(connection)
|
||||||
time.sleep(1) # To avoid "database is being accessed by other users" errors.
|
time.sleep(1) # To avoid "database is being accessed by other users" errors.
|
||||||
|
|
Loading…
Reference in New Issue