mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #1673 -- Every database backend now raises ImproperlyConfigured if the relevant Python database module raises ImportError
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2993 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -5,7 +5,11 @@ Requires adodbapi 2.0.1: http://adodbapi.sourceforge.net/ | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| import adodbapi as Database | ||||
| try: | ||||
|     import adodbapi as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading adodbapi module: %s" % e | ||||
| import datetime | ||||
| try: | ||||
|     import mx | ||||
|   | ||||
| @@ -5,7 +5,11 @@ Requires MySQLdb: http://sourceforge.net/projects/mysql-python | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| import MySQLdb as Database | ||||
| try: | ||||
|     import MySQLdb as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading MySQLdb module: %s" % e | ||||
| from MySQLdb.converters import conversions | ||||
| from MySQLdb.constants import FIELD_TYPE | ||||
| import types | ||||
|   | ||||
| @@ -5,7 +5,11 @@ Requires cx_Oracle: http://www.python.net/crew/atuining/cx_Oracle/ | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| import cx_Oracle as Database | ||||
| try: | ||||
|     import cx_Oracle as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading cx_Oracle module: %s" % e | ||||
| import types | ||||
|  | ||||
| DatabaseError = Database.Error | ||||
|   | ||||
| @@ -5,7 +5,11 @@ Requires psycopg 1: http://initd.org/projects/psycopg1 | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| import psycopg as Database | ||||
| try: | ||||
|     import psycopg as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading psycopg module: %s" % e | ||||
|  | ||||
| DatabaseError = Database.DatabaseError | ||||
|  | ||||
|   | ||||
| @@ -5,7 +5,11 @@ Requires psycopg 2: http://initd.org/projects/psycopg2 | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| import psycopg2 as Database | ||||
| try: | ||||
|     import psycopg2 as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading psycopg2 module: %s" % e | ||||
|  | ||||
| DatabaseError = Database.DatabaseError | ||||
|  | ||||
|   | ||||
| @@ -3,7 +3,11 @@ SQLite3 backend for django.  Requires pysqlite2 (http://pysqlite.org/). | ||||
| """ | ||||
|  | ||||
| from django.db.backends import util | ||||
| from pysqlite2 import dbapi2 as Database | ||||
| try: | ||||
|     from pysqlite2 import dbapi2 as Database | ||||
| except ImportError, e: | ||||
|     from django.core.exceptions import ImproperlyConfigured | ||||
|     raise ImproperlyConfigured, "Error loading pysqlite2 module: %s" % e | ||||
|  | ||||
| DatabaseError = Database.DatabaseError | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user