Esempio n. 1
0
 def close(self):
     self.validate_thread_sharing()
     # 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.settings_dict['NAME'] != ":memory:":
         BaseDatabaseWrapper.close(self)
Esempio n. 2
0
 def close(self):
     self.validate_thread_sharing()
     # 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.settings_dict['NAME'] != ":memory:":
         BaseDatabaseWrapper.close(self)
Esempio n. 3
0
 def close(self):
     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 settings.DATABASE_NAME != ":memory:":
         BaseDatabaseWrapper.close(self)
Esempio n. 4
0
 def close(self):
     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 settings.DATABASE_NAME != ":memory:":
         BaseDatabaseWrapper.close(self)