2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
MySQL database backend for Django.
|
|
|
|
|
|
|
|
Requires MySQLdb: http://sourceforge.net/projects/mysql-python
|
|
|
|
"""
|
2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2012-02-28 05:15:25 +08:00
|
|
|
import datetime
|
2008-08-12 15:52:17 +08:00
|
|
|
import re
|
2010-01-29 23:45:55 +08:00
|
|
|
import sys
|
2012-03-17 17:11:24 +08:00
|
|
|
import warnings
|
2008-08-12 15:52:17 +08:00
|
|
|
|
2006-05-27 02:58:46 +08:00
|
|
|
try:
|
|
|
|
import MySQLdb as Database
|
2012-04-29 00:09:37 +08:00
|
|
|
except ImportError as e:
|
2006-05-27 02:58:46 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2007-08-20 11:32:06 +08:00
|
|
|
raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
|
2007-03-19 03:16:47 +08:00
|
|
|
|
|
|
|
# We want version (1, 2, 1, 'final', 2) or later. We can't just use
|
|
|
|
# lexicographic ordering in this check because then (1, 2, 1, 'gamma')
|
|
|
|
# inadvertently passes the version test.
|
|
|
|
version = Database.version_info
|
2012-04-21 11:04:10 +08:00
|
|
|
if (version < (1, 2, 1) or (version[:3] == (1, 2, 1) and
|
2007-03-19 03:16:47 +08:00
|
|
|
(len(version) < 5 or version[3] != 'final' or version[4] < 2))):
|
2008-03-24 22:02:44 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
raise ImproperlyConfigured("MySQLdb-1.2.1p2 or newer is required; you have %s" % Database.__version__)
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-02-29 16:57:48 +08:00
|
|
|
from MySQLdb.converters import conversions, Thing2Literal
|
2011-04-05 08:19:17 +08:00
|
|
|
from MySQLdb.constants import FIELD_TYPE, CLIENT
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-05-08 18:57:35 +08:00
|
|
|
try:
|
|
|
|
import pytz
|
|
|
|
except ImportError:
|
|
|
|
pytz = None
|
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
from django.conf import settings
|
2010-01-29 23:45:55 +08:00
|
|
|
from django.db import utils
|
2013-09-17 00:52:05 +08:00
|
|
|
from django.db.backends import (utils as backend_utils, BaseDatabaseFeatures,
|
2013-07-08 09:18:06 +08:00
|
|
|
BaseDatabaseOperations, BaseDatabaseWrapper)
|
2008-08-22 22:18:53 +08:00
|
|
|
from django.db.backends.mysql.client import DatabaseClient
|
|
|
|
from django.db.backends.mysql.creation import DatabaseCreation
|
|
|
|
from django.db.backends.mysql.introspection import DatabaseIntrospection
|
|
|
|
from django.db.backends.mysql.validation import DatabaseValidation
|
2013-03-29 03:00:59 +08:00
|
|
|
from django.utils.encoding import force_str, force_text
|
2012-08-18 19:29:31 +08:00
|
|
|
from django.db.backends.mysql.schema import DatabaseSchemaEditor
|
2012-06-09 21:59:52 +08:00
|
|
|
from django.utils.functional import cached_property
|
2012-08-18 22:04:06 +08:00
|
|
|
from django.utils.safestring import SafeBytes, SafeText
|
2012-07-20 18:18:38 +08:00
|
|
|
from django.utils import six
|
2012-02-28 05:15:25 +08:00
|
|
|
from django.utils import timezone
|
2008-08-22 22:18:53 +08:00
|
|
|
|
2007-09-15 06:05:58 +08:00
|
|
|
# Raise exceptions for database warnings if DEBUG is on
|
|
|
|
if settings.DEBUG:
|
2012-03-17 17:11:24 +08:00
|
|
|
warnings.filterwarnings("error", category=Database.Warning)
|
2007-09-15 06:05:58 +08:00
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
DatabaseError = Database.DatabaseError
|
2007-04-25 18:18:56 +08:00
|
|
|
IntegrityError = Database.IntegrityError
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2011-11-18 21:01:06 +08:00
|
|
|
# It's impossible to import datetime_or_None directly from MySQLdb.times
|
2012-02-28 05:15:25 +08:00
|
|
|
parse_datetime = conversions[FIELD_TYPE.DATETIME]
|
2011-11-18 21:01:06 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2012-02-28 05:15:25 +08:00
|
|
|
def parse_datetime_with_timezone_support(value):
|
|
|
|
dt = parse_datetime(value)
|
2011-11-18 21:01:06 +08:00
|
|
|
# Confirm that dt is naive before overwriting its tzinfo.
|
2012-02-28 05:15:25 +08:00
|
|
|
if dt is not None and settings.USE_TZ and timezone.is_naive(dt):
|
|
|
|
dt = dt.replace(tzinfo=timezone.utc)
|
2011-11-18 21:01:06 +08:00
|
|
|
return dt
|
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2012-02-28 05:15:25 +08:00
|
|
|
def adapt_datetime_with_timezone_support(value, conv):
|
|
|
|
# Equivalent to DateTimeField.get_db_prep_value. Used only by raw SQL.
|
|
|
|
if settings.USE_TZ:
|
|
|
|
if timezone.is_naive(value):
|
2012-10-24 22:20:07 +08:00
|
|
|
warnings.warn("MySQL received a naive datetime (%s)"
|
2012-06-08 00:08:47 +08:00
|
|
|
" while time zone support is active." % value,
|
2012-02-28 05:15:25 +08:00
|
|
|
RuntimeWarning)
|
|
|
|
default_timezone = timezone.get_default_timezone()
|
|
|
|
value = timezone.make_aware(value, default_timezone)
|
|
|
|
value = value.astimezone(timezone.utc).replace(tzinfo=None)
|
2012-02-29 16:57:48 +08:00
|
|
|
return Thing2Literal(value.strftime("%Y-%m-%d %H:%M:%S"), conv)
|
2012-02-28 05:15:25 +08:00
|
|
|
|
2008-11-16 16:50:06 +08:00
|
|
|
# MySQLdb-1.2.1 returns TIME columns as timedelta -- they are more like
|
|
|
|
# timedelta in terms of actual behavior as they are signed and include days --
|
|
|
|
# and Django expects time, so we still need to override that. We also need to
|
2012-08-18 22:04:06 +08:00
|
|
|
# add special handling for SafeText and SafeBytes as MySQLdb's type
|
2008-11-16 16:50:06 +08:00
|
|
|
# checking is too tight to catch those (see Django ticket #6052).
|
2011-11-18 21:01:06 +08:00
|
|
|
# Finally, MySQLdb always returns naive datetime objects. However, when
|
|
|
|
# timezone support is active, Django expects timezone-aware datetime objects.
|
2006-05-02 09:31:56 +08:00
|
|
|
django_conversions = conversions.copy()
|
|
|
|
django_conversions.update({
|
2013-09-17 00:52:05 +08:00
|
|
|
FIELD_TYPE.TIME: backend_utils.typecast_time,
|
|
|
|
FIELD_TYPE.DECIMAL: backend_utils.typecast_decimal,
|
|
|
|
FIELD_TYPE.NEWDECIMAL: backend_utils.typecast_decimal,
|
2012-02-28 05:15:25 +08:00
|
|
|
FIELD_TYPE.DATETIME: parse_datetime_with_timezone_support,
|
|
|
|
datetime.datetime: adapt_datetime_with_timezone_support,
|
2008-08-13 00:28:52 +08:00
|
|
|
})
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-09-27 10:42:31 +08:00
|
|
|
# This should match the numerical portion of the version numbers (we can treat
|
|
|
|
# versions like 5.0.24 and 5.0.24a as the same). Based on the list of version
|
|
|
|
# at http://dev.mysql.com/doc/refman/4.1/en/news.html and
|
|
|
|
# http://dev.mysql.com/doc/refman/5.0/en/news.html .
|
|
|
|
server_version_re = re.compile(r'(\d{1,2})\.(\d{1,2})\.(\d{1,2})')
|
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
# MySQLdb-1.2.1 and newer automatically makes use of SHOW WARNINGS on
|
|
|
|
# MySQL-4.1 and newer, so the MysqlDebugWrapper is unnecessary. Since the
|
|
|
|
# point is to raise Warnings as exceptions, this can be done with the Python
|
|
|
|
# warning module, and this is setup when the connection is created, and the
|
2013-09-17 00:52:05 +08:00
|
|
|
# standard backend_utils.CursorDebugWrapper can be used. Also, using sql_mode
|
2007-03-14 20:08:19 +08:00
|
|
|
# TRADITIONAL will automatically cause most warnings to be treated as errors.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-08-29 12:30:07 +08:00
|
|
|
class CursorWrapper(object):
|
|
|
|
"""
|
|
|
|
A thin wrapper around MySQLdb's normal cursor class so that we can catch
|
|
|
|
particular exception instances and reraise them with the right types.
|
|
|
|
|
|
|
|
Implemented as a wrapper, rather than a subclass, so that we aren't stuck
|
|
|
|
to the particular underlying representation returned by Connection.cursor().
|
|
|
|
"""
|
|
|
|
codes_for_integrityerror = (1048,)
|
|
|
|
|
|
|
|
def __init__(self, cursor):
|
|
|
|
self.cursor = cursor
|
|
|
|
|
|
|
|
def execute(self, query, args=None):
|
|
|
|
try:
|
2013-03-23 23:09:56 +08:00
|
|
|
# args is None means no string interpolation
|
2008-08-29 12:30:07 +08:00
|
|
|
return self.cursor.execute(query, args)
|
2012-04-29 00:09:37 +08:00
|
|
|
except Database.OperationalError as e:
|
2008-08-29 12:30:07 +08:00
|
|
|
# Map some error codes to IntegrityError, since they seem to be
|
|
|
|
# misclassified and Django would prefer the more logical place.
|
2013-05-08 18:56:50 +08:00
|
|
|
if e.args[0] in self.codes_for_integrityerror:
|
2012-07-22 03:06:13 +08:00
|
|
|
six.reraise(utils.IntegrityError, utils.IntegrityError(*tuple(e.args)), sys.exc_info()[2])
|
Refactored database exceptions wrapping.
Squashed commit of the following:
commit 2181d833ed1a2e422494738dcef311164c4e097e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Wed Feb 27 14:28:39 2013 +0100
Fixed #15901 -- Wrapped all PEP-249 exceptions.
commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:26:52 2013 +0100
Added PEP 3134 exception chaining.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 9365fad0a650328002fb424457d675a273c95802
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:13:49 2013 +0100
Improved API for wrapping database errors.
Thanks Alex Gaynor for the proposal.
commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 15:00:39 2013 +0100
Removed redundant exception wrapping.
This is now taken care of by the cursor wrapper.
commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:55:10 2013 +0100
Wrapped database exceptions in the base backend.
This covers the most common PEP-249 APIs:
- Connection APIs: close(), commit(), rollback(), cursor()
- Cursor APIs: callproc(), close(), execute(), executemany(),
fetchone(), fetchmany(), fetchall(), nextset().
Fixed #19920.
commit a66746bb5f0839f35543222787fce3b6a0d0a3ea
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:53:34 2013 +0100
Added a wrap_database_exception context manager and decorator.
It re-throws backend-specific exceptions using Django's common wrappers.
2013-02-26 21:53:34 +08:00
|
|
|
raise
|
2008-08-29 12:30:07 +08:00
|
|
|
|
|
|
|
def executemany(self, query, args):
|
|
|
|
try:
|
|
|
|
return self.cursor.executemany(query, args)
|
2012-04-29 00:09:37 +08:00
|
|
|
except Database.OperationalError as e:
|
2008-08-29 12:30:07 +08:00
|
|
|
# Map some error codes to IntegrityError, since they seem to be
|
|
|
|
# misclassified and Django would prefer the more logical place.
|
2013-05-08 18:56:50 +08:00
|
|
|
if e.args[0] in self.codes_for_integrityerror:
|
2012-07-22 03:06:13 +08:00
|
|
|
six.reraise(utils.IntegrityError, utils.IntegrityError(*tuple(e.args)), sys.exc_info()[2])
|
Refactored database exceptions wrapping.
Squashed commit of the following:
commit 2181d833ed1a2e422494738dcef311164c4e097e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Wed Feb 27 14:28:39 2013 +0100
Fixed #15901 -- Wrapped all PEP-249 exceptions.
commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:26:52 2013 +0100
Added PEP 3134 exception chaining.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 9365fad0a650328002fb424457d675a273c95802
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:13:49 2013 +0100
Improved API for wrapping database errors.
Thanks Alex Gaynor for the proposal.
commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 15:00:39 2013 +0100
Removed redundant exception wrapping.
This is now taken care of by the cursor wrapper.
commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:55:10 2013 +0100
Wrapped database exceptions in the base backend.
This covers the most common PEP-249 APIs:
- Connection APIs: close(), commit(), rollback(), cursor()
- Cursor APIs: callproc(), close(), execute(), executemany(),
fetchone(), fetchmany(), fetchall(), nextset().
Fixed #19920.
commit a66746bb5f0839f35543222787fce3b6a0d0a3ea
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:53:34 2013 +0100
Added a wrap_database_exception context manager and decorator.
It re-throws backend-specific exceptions using Django's common wrappers.
2013-02-26 21:53:34 +08:00
|
|
|
raise
|
2008-08-29 12:30:07 +08:00
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
if attr in self.__dict__:
|
|
|
|
return self.__dict__[attr]
|
|
|
|
else:
|
|
|
|
return getattr(self.cursor, attr)
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return iter(self.cursor)
|
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2007-08-20 10:20:33 +08:00
|
|
|
class DatabaseFeatures(BaseDatabaseFeatures):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
empty_fetchmany_value = ()
|
2008-04-28 19:51:52 +08:00
|
|
|
update_can_self_select = False
|
2009-01-15 19:06:34 +08:00
|
|
|
allows_group_by_pk = True
|
2008-09-01 08:49:03 +08:00
|
|
|
related_fields_match_type = True
|
2010-04-05 01:05:43 +08:00
|
|
|
allow_sliced_subqueries = False
|
2011-09-10 03:22:28 +08:00
|
|
|
has_bulk_insert = True
|
2011-04-21 04:42:07 +08:00
|
|
|
has_select_for_update = True
|
|
|
|
has_select_for_update_nowait = False
|
2010-10-11 20:55:17 +08:00
|
|
|
supports_forward_references = False
|
|
|
|
supports_long_model_names = False
|
|
|
|
supports_microsecond_precision = False
|
|
|
|
supports_regex_backreferencing = False
|
|
|
|
supports_date_lookup_using_string = False
|
|
|
|
supports_timezones = False
|
|
|
|
requires_explicit_null_ordering_when_grouping = True
|
|
|
|
allows_primary_key_0 = False
|
2012-04-21 11:04:10 +08:00
|
|
|
uses_savepoints = True
|
2013-09-23 04:14:17 +08:00
|
|
|
atomic_transactions = False
|
2012-09-08 03:40:59 +08:00
|
|
|
supports_check_constraints = False
|
2007-08-20 10:20:33 +08:00
|
|
|
|
2012-01-05 08:45:31 +08:00
|
|
|
def __init__(self, connection):
|
|
|
|
super(DatabaseFeatures, self).__init__(connection)
|
|
|
|
|
2012-06-09 21:59:52 +08:00
|
|
|
@cached_property
|
2012-01-05 08:45:31 +08:00
|
|
|
def _mysql_storage_engine(self):
|
|
|
|
"Internal method used in Django tests. Don't rely on this from your code"
|
2012-06-09 21:59:52 +08:00
|
|
|
cursor = self.connection.cursor()
|
|
|
|
cursor.execute('CREATE TABLE INTROSPECT_TEST (X INT)')
|
|
|
|
# This command is MySQL specific; the second column
|
|
|
|
# will tell you the default table type of the created
|
|
|
|
# table. Since all Django's test tables will have the same
|
|
|
|
# table type, that's enough to evaluate the feature.
|
|
|
|
cursor.execute("SHOW TABLE STATUS WHERE Name='INTROSPECT_TEST'")
|
|
|
|
result = cursor.fetchone()
|
|
|
|
cursor.execute('DROP TABLE INTROSPECT_TEST')
|
|
|
|
return result[1]
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def can_introspect_foreign_keys(self):
|
2011-02-01 22:42:52 +08:00
|
|
|
"Confirm support for introspected foreign keys"
|
2012-06-09 21:59:52 +08:00
|
|
|
return self._mysql_storage_engine != 'MyISAM'
|
2011-02-01 22:42:52 +08:00
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
@cached_property
|
|
|
|
def has_zoneinfo_database(self):
|
2013-05-08 18:57:35 +08:00
|
|
|
# MySQL accepts full time zones names (eg. Africa/Nairobi) but rejects
|
|
|
|
# abbreviations (eg. EAT). When pytz isn't installed and the current
|
|
|
|
# time zone is LocalTimezone (the only sensible value in this
|
|
|
|
# context), the current time zone name will be an abbreviation. As a
|
|
|
|
# consequence, MySQL cannot perform time zone conversions reliably.
|
|
|
|
if pytz is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Test if the time zone definitions are installed.
|
2013-02-10 23:15:49 +08:00
|
|
|
cursor = self.connection.cursor()
|
|
|
|
cursor.execute("SELECT 1 FROM mysql.time_zone LIMIT 1")
|
|
|
|
return cursor.fetchone() is not None
|
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2007-08-20 06:29:57 +08:00
|
|
|
class DatabaseOperations(BaseDatabaseOperations):
|
2010-04-01 23:10:53 +08:00
|
|
|
compiler_module = "django.db.backends.mysql.compiler"
|
|
|
|
|
2007-08-20 06:40:06 +08:00
|
|
|
def date_extract_sql(self, lookup_type, field_name):
|
|
|
|
# http://dev.mysql.com/doc/mysql/en/date-and-time-functions.html
|
2009-02-08 13:08:06 +08:00
|
|
|
if lookup_type == 'week_day':
|
|
|
|
# DAYOFWEEK() returns an integer, 1-7, Sunday=1.
|
|
|
|
# Note: WEEKDAY() returns 0-6, Monday=0.
|
|
|
|
return "DAYOFWEEK(%s)" % field_name
|
|
|
|
else:
|
|
|
|
return "EXTRACT(%s FROM %s)" % (lookup_type.upper(), field_name)
|
2007-08-20 06:29:57 +08:00
|
|
|
|
2007-08-20 06:47:43 +08:00
|
|
|
def date_trunc_sql(self, lookup_type, field_name):
|
|
|
|
fields = ['year', 'month', 'day', 'hour', 'minute', 'second']
|
2013-11-03 05:02:56 +08:00
|
|
|
format = ('%%Y-', '%%m', '-%%d', ' %%H:', '%%i', ':%%s') # Use double percents to escape.
|
2007-08-20 06:47:43 +08:00
|
|
|
format_def = ('0000-', '01', '-01', ' 00:', '00', ':00')
|
|
|
|
try:
|
|
|
|
i = fields.index(lookup_type) + 1
|
|
|
|
except ValueError:
|
|
|
|
sql = field_name
|
|
|
|
else:
|
|
|
|
format_str = ''.join([f for f in format[:i]] + [f for f in format_def[i:]])
|
|
|
|
sql = "CAST(DATE_FORMAT(%s, '%s') AS DATETIME)" % (field_name, format_str)
|
|
|
|
return sql
|
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
def datetime_extract_sql(self, lookup_type, field_name, tzname):
|
|
|
|
if settings.USE_TZ:
|
|
|
|
field_name = "CONVERT_TZ(%s, 'UTC', %%s)" % field_name
|
|
|
|
params = [tzname]
|
|
|
|
else:
|
|
|
|
params = []
|
|
|
|
# http://dev.mysql.com/doc/mysql/en/date-and-time-functions.html
|
|
|
|
if lookup_type == 'week_day':
|
|
|
|
# DAYOFWEEK() returns an integer, 1-7, Sunday=1.
|
|
|
|
# Note: WEEKDAY() returns 0-6, Monday=0.
|
|
|
|
sql = "DAYOFWEEK(%s)" % field_name
|
|
|
|
else:
|
|
|
|
sql = "EXTRACT(%s FROM %s)" % (lookup_type.upper(), field_name)
|
|
|
|
return sql, params
|
|
|
|
|
|
|
|
def datetime_trunc_sql(self, lookup_type, field_name, tzname):
|
|
|
|
if settings.USE_TZ:
|
|
|
|
field_name = "CONVERT_TZ(%s, 'UTC', %%s)" % field_name
|
|
|
|
params = [tzname]
|
|
|
|
else:
|
|
|
|
params = []
|
|
|
|
fields = ['year', 'month', 'day', 'hour', 'minute', 'second']
|
2013-11-03 05:02:56 +08:00
|
|
|
format = ('%%Y-', '%%m', '-%%d', ' %%H:', '%%i', ':%%s') # Use double percents to escape.
|
2013-02-10 23:15:49 +08:00
|
|
|
format_def = ('0000-', '01', '-01', ' 00:', '00', ':00')
|
|
|
|
try:
|
|
|
|
i = fields.index(lookup_type) + 1
|
|
|
|
except ValueError:
|
|
|
|
sql = field_name
|
|
|
|
else:
|
|
|
|
format_str = ''.join([f for f in format[:i]] + [f for f in format_def[i:]])
|
|
|
|
sql = "CAST(DATE_FORMAT(%s, '%s') AS DATETIME)" % (field_name, format_str)
|
|
|
|
return sql, params
|
|
|
|
|
2010-12-22 11:34:04 +08:00
|
|
|
def date_interval_sql(self, sql, connector, timedelta):
|
|
|
|
return "(%s %s INTERVAL '%d 0:0:%d:%d' DAY_MICROSECOND)" % (sql, connector,
|
|
|
|
timedelta.days, timedelta.seconds, timedelta.microseconds)
|
|
|
|
|
2007-08-20 07:07:34 +08:00
|
|
|
def drop_foreignkey_sql(self):
|
|
|
|
return "DROP FOREIGN KEY"
|
|
|
|
|
2008-12-10 13:19:27 +08:00
|
|
|
def force_no_ordering(self):
|
|
|
|
"""
|
|
|
|
"ORDER BY NULL" prevents MySQL from implicitly ordering by grouped
|
|
|
|
columns. If no ordering would otherwise be applied, we don't want any
|
|
|
|
implicit sorting going on.
|
|
|
|
"""
|
|
|
|
return ["NULL"]
|
|
|
|
|
2007-08-20 07:13:06 +08:00
|
|
|
def fulltext_search_sql(self, field_name):
|
|
|
|
return 'MATCH (%s) AGAINST (%%s IN BOOLEAN MODE)' % field_name
|
|
|
|
|
2011-04-22 20:14:54 +08:00
|
|
|
def last_executed_query(self, cursor, sql, params):
|
|
|
|
# With MySQLdb, cursor objects have an (undocumented) "_last_executed"
|
|
|
|
# attribute where the exact query sent to the database is saved.
|
|
|
|
# See MySQLdb/cursors.py in the source distribution.
|
2013-06-30 00:44:41 +08:00
|
|
|
return force_text(getattr(cursor, '_last_executed', None), errors='replace')
|
2011-04-22 20:14:54 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def no_limit_value(self):
|
|
|
|
# 2**64 - 1, as recommended by the MySQL documentation
|
2012-07-20 18:45:19 +08:00
|
|
|
return 18446744073709551615
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2007-08-20 09:03:33 +08:00
|
|
|
def quote_name(self, name):
|
|
|
|
if name.startswith("`") and name.endswith("`"):
|
2013-11-03 05:02:56 +08:00
|
|
|
return name # Quoting once is enough.
|
2007-08-20 09:03:33 +08:00
|
|
|
return "`%s`" % name
|
|
|
|
|
2013-09-07 04:27:51 +08:00
|
|
|
def quote_parameter(self, value):
|
|
|
|
# Inner import to allow module to fail to load gracefully
|
|
|
|
import MySQLdb.converters
|
|
|
|
return MySQLdb.escape(value, MySQLdb.converters.conversions)
|
|
|
|
|
2007-08-20 08:04:20 +08:00
|
|
|
def random_function_sql(self):
|
|
|
|
return 'RAND()'
|
|
|
|
|
2013-06-10 03:04:36 +08:00
|
|
|
def sql_flush(self, style, tables, sequences, allow_cascade=False):
|
2007-08-20 08:15:53 +08:00
|
|
|
# NB: The generated SQL below is specific to MySQL
|
|
|
|
# 'TRUNCATE x;', 'TRUNCATE y;', 'TRUNCATE z;'... style SQL statements
|
|
|
|
# to clear all tables of all data
|
|
|
|
if tables:
|
|
|
|
sql = ['SET FOREIGN_KEY_CHECKS = 0;']
|
|
|
|
for table in tables:
|
2013-06-10 03:04:36 +08:00
|
|
|
sql.append('%s %s;' % (
|
|
|
|
style.SQL_KEYWORD('TRUNCATE'),
|
|
|
|
style.SQL_FIELD(self.quote_name(table)),
|
|
|
|
))
|
2007-08-20 08:15:53 +08:00
|
|
|
sql.append('SET FOREIGN_KEY_CHECKS = 1;')
|
2012-07-25 04:24:16 +08:00
|
|
|
sql.extend(self.sequence_reset_by_name_sql(style, sequences))
|
2007-08-20 08:15:53 +08:00
|
|
|
return sql
|
|
|
|
else:
|
|
|
|
return []
|
|
|
|
|
2012-07-25 04:24:16 +08:00
|
|
|
def sequence_reset_by_name_sql(self, style, sequences):
|
|
|
|
# Truncate already resets the AUTO_INCREMENT field from
|
|
|
|
# MySQL version 5.0.13 onwards. Refs #16961.
|
|
|
|
if self.connection.mysql_version < (5, 0, 13):
|
2013-07-08 08:39:54 +08:00
|
|
|
return ["%s %s %s %s %s;" %
|
2012-07-25 04:24:16 +08:00
|
|
|
(style.SQL_KEYWORD('ALTER'),
|
|
|
|
style.SQL_KEYWORD('TABLE'),
|
|
|
|
style.SQL_TABLE(self.quote_name(sequence['table'])),
|
|
|
|
style.SQL_KEYWORD('AUTO_INCREMENT'),
|
|
|
|
style.SQL_FIELD('= 1'),
|
|
|
|
) for sequence in sequences]
|
|
|
|
else:
|
|
|
|
return []
|
|
|
|
|
2012-04-25 02:03:14 +08:00
|
|
|
def validate_autopk_value(self, value):
|
|
|
|
# MySQLism: zero in AUTO_INCREMENT field does not work. Refs #17653.
|
|
|
|
if value == 0:
|
|
|
|
raise ValueError('The database backend does not accept 0 as a '
|
|
|
|
'value for AutoField.')
|
|
|
|
return value
|
|
|
|
|
2008-07-29 13:09:29 +08:00
|
|
|
def value_to_db_datetime(self, value):
|
|
|
|
if value is None:
|
|
|
|
return None
|
2008-11-16 16:50:06 +08:00
|
|
|
|
2008-09-02 01:48:39 +08:00
|
|
|
# MySQL doesn't support tz-aware datetimes
|
2012-02-28 05:15:25 +08:00
|
|
|
if timezone.is_aware(value):
|
2011-11-18 21:01:06 +08:00
|
|
|
if settings.USE_TZ:
|
2012-02-28 05:15:25 +08:00
|
|
|
value = value.astimezone(timezone.utc).replace(tzinfo=None)
|
2011-11-18 21:01:06 +08:00
|
|
|
else:
|
|
|
|
raise ValueError("MySQL backend does not support timezone-aware datetimes when USE_TZ is False.")
|
2008-09-02 01:48:39 +08:00
|
|
|
|
|
|
|
# MySQL doesn't support microseconds
|
2012-07-20 20:48:51 +08:00
|
|
|
return six.text_type(value.replace(microsecond=0))
|
2008-07-29 13:09:29 +08:00
|
|
|
|
|
|
|
def value_to_db_time(self, value):
|
|
|
|
if value is None:
|
|
|
|
return None
|
2008-11-16 16:50:06 +08:00
|
|
|
|
2011-11-18 21:01:06 +08:00
|
|
|
# MySQL doesn't support tz-aware times
|
2012-02-28 05:15:25 +08:00
|
|
|
if timezone.is_aware(value):
|
2011-11-18 21:01:06 +08:00
|
|
|
raise ValueError("MySQL backend does not support timezone-aware times.")
|
2008-11-16 16:50:06 +08:00
|
|
|
|
2008-09-02 01:48:39 +08:00
|
|
|
# MySQL doesn't support microseconds
|
2012-07-20 20:48:51 +08:00
|
|
|
return six.text_type(value.replace(microsecond=0))
|
2008-07-29 13:09:29 +08:00
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
def year_lookup_bounds_for_datetime_field(self, value):
|
2008-07-29 13:09:29 +08:00
|
|
|
# Again, no microseconds
|
2013-02-10 23:15:49 +08:00
|
|
|
first, second = super(DatabaseOperations, self).year_lookup_bounds_for_datetime_field(value)
|
|
|
|
return [first.replace(microsecond=0), second.replace(microsecond=0)]
|
2008-07-29 13:09:29 +08:00
|
|
|
|
2010-04-28 20:08:30 +08:00
|
|
|
def max_name_length(self):
|
|
|
|
return 64
|
|
|
|
|
2011-09-10 03:22:28 +08:00
|
|
|
def bulk_insert_sql(self, fields, num_values):
|
|
|
|
items_sql = "(%s)" % ", ".join(["%s"] * len(fields))
|
|
|
|
return "VALUES " + ", ".join([items_sql] * num_values)
|
|
|
|
|
2013-02-22 06:02:18 +08:00
|
|
|
def combine_expression(self, connector, sub_expressions):
|
|
|
|
"""
|
|
|
|
MySQL requires special cases for ^ operators in query expressions
|
|
|
|
"""
|
|
|
|
if connector == '^':
|
|
|
|
return 'POW(%s)' % ','.join(sub_expressions)
|
|
|
|
return super(DatabaseOperations, self).combine_expression(connector, sub_expressions)
|
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper):
|
2010-10-11 20:55:17 +08:00
|
|
|
vendor = 'mysql'
|
2007-08-20 11:26:55 +08:00
|
|
|
operators = {
|
2008-08-12 15:52:33 +08:00
|
|
|
'exact': '= %s',
|
2007-08-20 11:26:55 +08:00
|
|
|
'iexact': 'LIKE %s',
|
|
|
|
'contains': 'LIKE BINARY %s',
|
|
|
|
'icontains': 'LIKE %s',
|
|
|
|
'regex': 'REGEXP BINARY %s',
|
|
|
|
'iregex': 'REGEXP %s',
|
|
|
|
'gt': '> %s',
|
|
|
|
'gte': '>= %s',
|
|
|
|
'lt': '< %s',
|
|
|
|
'lte': '<= %s',
|
|
|
|
'startswith': 'LIKE BINARY %s',
|
|
|
|
'endswith': 'LIKE BINARY %s',
|
|
|
|
'istartswith': 'LIKE %s',
|
|
|
|
'iendswith': 'LIKE %s',
|
|
|
|
}
|
2007-08-20 06:29:57 +08:00
|
|
|
|
Refactored database exceptions wrapping.
Squashed commit of the following:
commit 2181d833ed1a2e422494738dcef311164c4e097e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Wed Feb 27 14:28:39 2013 +0100
Fixed #15901 -- Wrapped all PEP-249 exceptions.
commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:26:52 2013 +0100
Added PEP 3134 exception chaining.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 9365fad0a650328002fb424457d675a273c95802
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:13:49 2013 +0100
Improved API for wrapping database errors.
Thanks Alex Gaynor for the proposal.
commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 15:00:39 2013 +0100
Removed redundant exception wrapping.
This is now taken care of by the cursor wrapper.
commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:55:10 2013 +0100
Wrapped database exceptions in the base backend.
This covers the most common PEP-249 APIs:
- Connection APIs: close(), commit(), rollback(), cursor()
- Cursor APIs: callproc(), close(), execute(), executemany(),
fetchone(), fetchmany(), fetchall(), nextset().
Fixed #19920.
commit a66746bb5f0839f35543222787fce3b6a0d0a3ea
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:53:34 2013 +0100
Added a wrap_database_exception context manager and decorator.
It re-throws backend-specific exceptions using Django's common wrappers.
2013-02-26 21:53:34 +08:00
|
|
|
Database = Database
|
|
|
|
|
2009-03-11 19:03:36 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DatabaseWrapper, self).__init__(*args, **kwargs)
|
2008-08-12 15:52:17 +08:00
|
|
|
|
2010-10-11 20:55:17 +08:00
|
|
|
self.features = DatabaseFeatures(self)
|
2011-04-05 08:19:17 +08:00
|
|
|
self.ops = DatabaseOperations(self)
|
2009-03-11 11:39:34 +08:00
|
|
|
self.client = DatabaseClient(self)
|
2008-08-11 20:11:25 +08:00
|
|
|
self.creation = DatabaseCreation(self)
|
|
|
|
self.introspection = DatabaseIntrospection(self)
|
2009-12-22 23:18:51 +08:00
|
|
|
self.validation = DatabaseValidation(self)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2012-11-27 04:42:27 +08:00
|
|
|
def get_connection_params(self):
|
|
|
|
kwargs = {
|
|
|
|
'conv': django_conversions,
|
|
|
|
'charset': 'utf8',
|
|
|
|
}
|
2013-09-02 18:06:32 +08:00
|
|
|
if six.PY2:
|
2013-05-06 01:44:43 +08:00
|
|
|
kwargs['use_unicode'] = True
|
2012-11-27 04:42:27 +08:00
|
|
|
settings_dict = self.settings_dict
|
|
|
|
if settings_dict['USER']:
|
|
|
|
kwargs['user'] = settings_dict['USER']
|
|
|
|
if settings_dict['NAME']:
|
|
|
|
kwargs['db'] = settings_dict['NAME']
|
|
|
|
if settings_dict['PASSWORD']:
|
|
|
|
kwargs['passwd'] = force_str(settings_dict['PASSWORD'])
|
|
|
|
if settings_dict['HOST'].startswith('/'):
|
|
|
|
kwargs['unix_socket'] = settings_dict['HOST']
|
|
|
|
elif settings_dict['HOST']:
|
|
|
|
kwargs['host'] = settings_dict['HOST']
|
|
|
|
if settings_dict['PORT']:
|
|
|
|
kwargs['port'] = int(settings_dict['PORT'])
|
|
|
|
# We need the number of potentially affected rows after an
|
|
|
|
# "UPDATE", not the number of changed rows.
|
|
|
|
kwargs['client_flag'] = CLIENT.FOUND_ROWS
|
|
|
|
kwargs.update(settings_dict['OPTIONS'])
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def get_new_connection(self, conn_params):
|
|
|
|
conn = Database.connect(**conn_params)
|
|
|
|
conn.encoders[SafeText] = conn.encoders[six.text_type]
|
|
|
|
conn.encoders[SafeBytes] = conn.encoders[bytes]
|
|
|
|
return conn
|
|
|
|
|
|
|
|
def init_connection_state(self):
|
|
|
|
cursor = self.connection.cursor()
|
|
|
|
# SQL_AUTO_IS_NULL in MySQL controls whether an AUTO_INCREMENT column
|
|
|
|
# on a recently-inserted row will return when the field is tested for
|
|
|
|
# NULL. Disabling this value brings this aspect of MySQL in line with
|
|
|
|
# SQL standards.
|
|
|
|
cursor.execute('SET SQL_AUTO_IS_NULL = 0')
|
|
|
|
cursor.close()
|
|
|
|
|
2013-02-19 00:12:42 +08:00
|
|
|
def create_cursor(self):
|
2011-09-11 02:58:30 +08:00
|
|
|
cursor = self.connection.cursor()
|
|
|
|
return CursorWrapper(cursor)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def _rollback(self):
|
2007-08-20 05:30:57 +08:00
|
|
|
try:
|
|
|
|
BaseDatabaseWrapper._rollback(self)
|
|
|
|
except Database.NotSupportedError:
|
|
|
|
pass
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-02 20:47:46 +08:00
|
|
|
def _set_autocommit(self, autocommit):
|
|
|
|
self.connection.autocommit(autocommit)
|
2011-08-07 08:43:26 +08:00
|
|
|
|
|
|
|
def disable_constraint_checking(self):
|
|
|
|
"""
|
|
|
|
Disables foreign key checks, primarily for use in adding rows with forward references. Always returns True,
|
|
|
|
to indicate constraint checks need to be re-enabled.
|
|
|
|
"""
|
|
|
|
self.cursor().execute('SET foreign_key_checks=0')
|
|
|
|
return True
|
|
|
|
|
|
|
|
def enable_constraint_checking(self):
|
|
|
|
"""
|
|
|
|
Re-enable foreign key checks after they have been disabled.
|
|
|
|
"""
|
2013-09-23 04:14:17 +08:00
|
|
|
# Override needs_rollback in case constraint_checks_disabled is
|
|
|
|
# nested inside transaction.atomic.
|
|
|
|
self.needs_rollback, needs_rollback = False, self.needs_rollback
|
|
|
|
try:
|
|
|
|
self.cursor().execute('SET foreign_key_checks=1')
|
|
|
|
finally:
|
|
|
|
self.needs_rollback = needs_rollback
|
2011-08-07 08:43:26 +08:00
|
|
|
|
|
|
|
def check_constraints(self, table_names=None):
|
|
|
|
"""
|
2011-08-09 01:08:35 +08:00
|
|
|
Checks each table name in `table_names` for rows with invalid foreign key references. This method is
|
2011-08-07 08:43:26 +08:00
|
|
|
intended to be used in conjunction with `disable_constraint_checking()` and `enable_constraint_checking()`, to
|
|
|
|
determine if rows with invalid references were entered while constraint checks were off.
|
|
|
|
|
|
|
|
Raises an IntegrityError on the first invalid foreign key reference encountered (if any) and provides
|
|
|
|
detailed information about the invalid reference in the error message.
|
|
|
|
|
|
|
|
Backends can override this method if they can more directly apply constraint checking (e.g. via "SET CONSTRAINTS
|
|
|
|
ALL IMMEDIATE")
|
|
|
|
"""
|
|
|
|
cursor = self.cursor()
|
|
|
|
if table_names is None:
|
2012-04-29 07:11:55 +08:00
|
|
|
table_names = self.introspection.table_names(cursor)
|
2011-08-07 08:43:26 +08:00
|
|
|
for table_name in table_names:
|
|
|
|
primary_key_column_name = self.introspection.get_primary_key_column(cursor, table_name)
|
|
|
|
if not primary_key_column_name:
|
|
|
|
continue
|
|
|
|
key_columns = self.introspection.get_key_columns(cursor, table_name)
|
|
|
|
for column_name, referenced_table_name, referenced_column_name in key_columns:
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT REFERRING.`%s`, REFERRING.`%s` FROM `%s` as REFERRING
|
|
|
|
LEFT JOIN `%s` as REFERRED
|
|
|
|
ON (REFERRING.`%s` = REFERRED.`%s`)
|
|
|
|
WHERE REFERRING.`%s` IS NOT NULL AND REFERRED.`%s` IS NULL"""
|
|
|
|
% (primary_key_column_name, column_name, table_name, referenced_table_name,
|
|
|
|
column_name, referenced_column_name, column_name, referenced_column_name))
|
|
|
|
for bad_row in cursor.fetchall():
|
|
|
|
raise utils.IntegrityError("The row in table '%s' with primary key '%s' has an invalid "
|
|
|
|
"foreign key: %s.%s contains a value '%s' that does not have a corresponding value in %s.%s."
|
|
|
|
% (table_name, bad_row[0],
|
|
|
|
table_name, column_name, bad_row[1],
|
|
|
|
referenced_table_name, referenced_column_name))
|
2012-08-18 19:29:31 +08:00
|
|
|
|
2013-09-07 04:27:51 +08:00
|
|
|
def schema_editor(self, *args, **kwargs):
|
2012-08-18 19:29:31 +08:00
|
|
|
"Returns a new instance of this backend's SchemaEditor"
|
2013-09-07 04:27:51 +08:00
|
|
|
return DatabaseSchemaEditor(self, *args, **kwargs)
|
2013-04-19 00:16:39 +08:00
|
|
|
|
2013-03-02 19:12:51 +08:00
|
|
|
def is_usable(self):
|
|
|
|
try:
|
|
|
|
self.connection.ping()
|
|
|
|
except DatabaseError:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def mysql_version(self):
|
|
|
|
with self.temporary_connection():
|
|
|
|
server_info = self.connection.get_server_info()
|
|
|
|
match = server_version_re.match(server_info)
|
|
|
|
if not match:
|
|
|
|
raise Exception('Unable to determine MySQL version from version string %r' % server_info)
|
2013-08-30 00:09:35 +08:00
|
|
|
return tuple(int(x) for x in match.groups())
|