Fixed #2772 -- Made SQLite support work correctly with Python 2.5 standard
module (as well as pysqlite2 for earlier Python versions). Patch from ymasuda[at]ethercube.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e2664759e6
commit
b4e5a96ccc
|
@ -4,10 +4,18 @@ SQLite3 backend for django. Requires pysqlite2 (http://pysqlite.org/).
|
|||
|
||||
from django.db.backends import util
|
||||
try:
|
||||
from pysqlite2 import dbapi2 as Database
|
||||
try:
|
||||
from sqlite3 import dbapi2 as Database
|
||||
except ImportError:
|
||||
from pysqlite2 import dbapi2 as Database
|
||||
except ImportError, e:
|
||||
import sys
|
||||
from django.core.exceptions import ImproperlyConfigured
|
||||
raise ImproperlyConfigured, "Error loading pysqlite2 module: %s" % e
|
||||
if sys.version_info < (2, 5, 0):
|
||||
module = 'pysqlite2'
|
||||
else:
|
||||
module = 'sqlite3'
|
||||
raise ImproperlyConfigured, "Error loading %s module: %s" % (module, e)
|
||||
|
||||
DatabaseError = Database.DatabaseError
|
||||
|
||||
|
|
Loading…
Reference in New Issue