Added missing bits of r17352. Refs #17513.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17353 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ca187fea88
commit
cd46863043
|
@ -105,7 +105,7 @@ class CursorWrapper(object):
|
||||||
# misclassified and Django would prefer the more logical place.
|
# misclassified and Django would prefer the more logical place.
|
||||||
if e[0] in self.codes_for_integrityerror:
|
if e[0] in self.codes_for_integrityerror:
|
||||||
raise utils.IntegrityError, utils.IntegrityError(*tuple(e)), sys.exc_info()[2]
|
raise utils.IntegrityError, utils.IntegrityError(*tuple(e)), sys.exc_info()[2]
|
||||||
raise
|
raise utils.DatabaseError, utils.DatabaseError(*tuple(e)), sys.exc_info()[2]
|
||||||
except Database.DatabaseError, e:
|
except Database.DatabaseError, e:
|
||||||
raise utils.DatabaseError, utils.DatabaseError(*tuple(e)), sys.exc_info()[2]
|
raise utils.DatabaseError, utils.DatabaseError(*tuple(e)), sys.exc_info()[2]
|
||||||
|
|
||||||
|
|
|
@ -745,6 +745,15 @@ datetimes are now stored without time-zone information in SQLite. When
|
||||||
:setting:`USE_TZ` is ``False``, if you attempt to save an aware datetime
|
:setting:`USE_TZ` is ``False``, if you attempt to save an aware datetime
|
||||||
object, Django raises an exception.
|
object, Django raises an exception.
|
||||||
|
|
||||||
|
``MySQLdb``-specific exceptions
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
The MySQL backend could raise :class:`MySQLdb.OperationalError`
|
||||||
|
when a query triggered an exception. This bug was fixed and
|
||||||
|
:class:`django.db.utils.DatabaseError` is now raised instead.
|
||||||
|
If you were testing for :class:`MySQLdb.OperationalError`,
|
||||||
|
you must update your ``except`` clauses.
|
||||||
|
|
||||||
Database connection's thread-locality
|
Database connection's thread-locality
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue