2009-12-26 11:44:21 +08:00
|
|
|
=========
|
|
|
|
Databases
|
|
|
|
=========
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
Django attempts to support as many features as possible on all database
|
|
|
|
backends. However, not all database backends are alike, and we've had to make
|
|
|
|
design decisions on which features to support and which assumptions we can make
|
|
|
|
safely.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
This file describes some of the features that might be relevant to Django
|
|
|
|
usage. Of course, it is not intended as a replacement for server-specific
|
|
|
|
documentation or reference manuals.
|
|
|
|
|
2009-03-24 07:25:03 +08:00
|
|
|
.. _postgresql-notes:
|
2009-03-11 15:06:50 +08:00
|
|
|
|
2009-02-02 20:03:31 +08:00
|
|
|
PostgreSQL notes
|
|
|
|
================
|
|
|
|
|
2011-06-17 04:05:25 +08:00
|
|
|
.. versionchanged:: 1.4
|
2010-06-21 19:48:45 +08:00
|
|
|
|
2011-06-17 04:05:25 +08:00
|
|
|
Django supports PostgreSQL 8.2 and higher.
|
2010-06-21 19:48:45 +08:00
|
|
|
|
2009-02-02 20:03:31 +08:00
|
|
|
PostgreSQL 8.2 to 8.2.4
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
The implementation of the population statistics aggregates ``STDDEV_POP`` and
|
|
|
|
``VAR_POP`` that shipped with PostgreSQL 8.2 to 8.2.4 are `known to be
|
|
|
|
faulty`_. Users of these releases of PostgreSQL are advised to upgrade to
|
|
|
|
`Release 8.2.5`_ or later. Django will raise a ``NotImplementedError`` if you
|
|
|
|
attempt to use the ``StdDev(sample=False)`` or ``Variance(sample=False)``
|
Fixed #10389, #10501, #10502, #10540, #10562, #10563, #10564, #10565, #10568, #10569, #10614, #10617, #10619 -- Fixed several typos as well as a couple minor issues in the docs, patches from timo, nih, bthomas, rduffield, UloPe, and sebleier@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10242 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-31 15:01:01 +08:00
|
|
|
aggregate with a database backend that falls within the affected release range.
|
2009-02-02 20:03:31 +08:00
|
|
|
|
|
|
|
.. _known to be faulty: http://archives.postgresql.org/pgsql-bugs/2007-07/msg00046.php
|
2012-06-28 16:49:07 +08:00
|
|
|
.. _Release 8.2.5: http://www.postgresql.org/docs/devel/static/release-8-2-5.html
|
2009-02-02 20:03:31 +08:00
|
|
|
|
2011-12-11 16:19:04 +08:00
|
|
|
Optimizing PostgreSQL's configuration
|
|
|
|
-------------------------------------
|
|
|
|
|
|
|
|
Django needs the following parameters for its database connections:
|
|
|
|
|
|
|
|
- ``client_encoding``: ``'UTF8'``,
|
|
|
|
- ``default_transaction_isolation``: ``'read committed'``,
|
|
|
|
- ``timezone``: ``'UTC'`` when :setting:`USE_TZ` is ``True``, value of
|
|
|
|
:setting:`TIME_ZONE` otherwise.
|
|
|
|
|
|
|
|
If these parameters already have the correct values, Django won't set them for
|
|
|
|
every new connection, which improves performance slightly. You can configure
|
|
|
|
them directly in :file:`postgresql.conf` or more conveniently per database
|
|
|
|
user with `ALTER ROLE`_.
|
|
|
|
|
|
|
|
Django will work just fine without this optimization, but each new connection
|
|
|
|
will do some additional queries to set these parameters.
|
|
|
|
|
|
|
|
.. _ALTER ROLE: http://www.postgresql.org/docs/current/interactive/sql-alterrole.html
|
|
|
|
|
2009-03-11 15:06:50 +08:00
|
|
|
Transaction handling
|
|
|
|
---------------------
|
|
|
|
|
2012-08-17 04:05:41 +08:00
|
|
|
:doc:`By default </topics/db/transactions>`, Django runs with an open
|
|
|
|
transaction which it commits automatically when any built-in, data-altering
|
|
|
|
model function is called. The PostgreSQL backends normally operate the same as
|
|
|
|
any other Django backend in this respect.
|
2009-03-11 15:06:50 +08:00
|
|
|
|
2010-06-21 19:48:45 +08:00
|
|
|
.. _postgresql-autocommit-mode:
|
|
|
|
|
2009-03-11 15:06:50 +08:00
|
|
|
Autocommit mode
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
If your application is particularly read-heavy and doesn't make many
|
|
|
|
database writes, the overhead of a constantly open transaction can
|
2011-12-11 16:19:04 +08:00
|
|
|
sometimes be noticeable. For those situations, you can configure Django
|
|
|
|
to use *"autocommit"* behavior for the connection, meaning that each database
|
2009-12-22 23:18:51 +08:00
|
|
|
operation will normally be in its own transaction, rather than having
|
|
|
|
the transaction extend over multiple operations. In this case, you can
|
|
|
|
still manually start a transaction if you're doing something that
|
|
|
|
requires consistency across multiple database operations. The
|
|
|
|
autocommit behavior is enabled by setting the ``autocommit`` key in
|
|
|
|
the :setting:`OPTIONS` part of your database configuration in
|
|
|
|
:setting:`DATABASES`::
|
|
|
|
|
2010-11-14 22:15:58 +08:00
|
|
|
'OPTIONS': {
|
|
|
|
'autocommit': True,
|
2009-03-11 15:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
In this configuration, Django still ensures that :ref:`delete()
|
|
|
|
<topics-db-queries-delete>` and :ref:`update() <topics-db-queries-update>`
|
|
|
|
queries run inside a single transaction, so that either all the affected
|
|
|
|
objects are changed or none of them are.
|
|
|
|
|
|
|
|
.. admonition:: This is database-level autocommit
|
|
|
|
|
2010-10-28 20:56:44 +08:00
|
|
|
This functionality is not the same as the :ref:`autocommit
|
|
|
|
<topics-db-transactions-autocommit>` decorator. That decorator is
|
|
|
|
a Django-level implementation that commits automatically after
|
2009-12-22 23:18:51 +08:00
|
|
|
data changing operations. The feature enabled using the
|
|
|
|
:setting:`OPTIONS` option provides autocommit behavior at the
|
|
|
|
database adapter level. It commits after *every* operation.
|
2009-03-11 15:06:50 +08:00
|
|
|
|
|
|
|
If you are using this feature and performing an operation akin to delete or
|
|
|
|
updating that requires multiple operations, you are strongly recommended to
|
|
|
|
wrap you operations in manual transaction handling to ensure data consistency.
|
|
|
|
You should also audit your existing code for any instances of this behavior
|
|
|
|
before enabling this feature. It's faster, but it provides less automatic
|
|
|
|
protection for multi-call operations.
|
|
|
|
|
2009-12-19 16:19:38 +08:00
|
|
|
Indexes for ``varchar`` and ``text`` columns
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2010-06-21 19:48:45 +08:00
|
|
|
|
2009-12-19 16:19:38 +08:00
|
|
|
When specifying ``db_index=True`` on your model fields, Django typically
|
|
|
|
outputs a single ``CREATE INDEX`` statement. However, if the database type
|
|
|
|
for the field is either ``varchar`` or ``text`` (e.g., used by ``CharField``,
|
|
|
|
``FileField``, and ``TextField``), then Django will create
|
|
|
|
an additional index that uses an appropriate `PostgreSQL operator class`_
|
2012-07-25 07:17:27 +08:00
|
|
|
for the column. The extra index is necessary to correctly perform
|
2009-12-19 16:19:38 +08:00
|
|
|
lookups that use the ``LIKE`` operator in their SQL, as is done with the
|
|
|
|
``contains`` and ``startswith`` lookup types.
|
|
|
|
|
|
|
|
.. _PostgreSQL operator class: http://www.postgresql.org/docs/8.4/static/indexes-opclass.html
|
|
|
|
|
2008-09-04 07:10:07 +08:00
|
|
|
.. _mysql-notes:
|
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
MySQL notes
|
2007-03-14 20:08:19 +08:00
|
|
|
===========
|
|
|
|
|
2012-04-21 11:04:10 +08:00
|
|
|
Version support
|
|
|
|
---------------
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-04-21 11:04:10 +08:00
|
|
|
Django supports MySQL 5.0.3 and higher.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-04-21 11:04:10 +08:00
|
|
|
`MySQL 5.0`_ adds the ``information_schema`` database, which contains detailed
|
2012-04-22 06:52:03 +08:00
|
|
|
data on all database schema. Django's ``inspectdb`` feature uses it.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-04-21 11:04:10 +08:00
|
|
|
.. versionchanged:: 1.5
|
|
|
|
The minimum version requirement of MySQL 5.0.3 was set in Django 1.5.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-04-21 11:04:10 +08:00
|
|
|
Django expects the database to support Unicode (UTF-8 encoding) and delegates to
|
|
|
|
it the task of enforcing transactions and referential integrity. It is important
|
|
|
|
to be aware of the fact that the two latter ones aren't actually enforced by
|
|
|
|
MySQL when using the MyISAM storage engine, see the next section.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
|
|
|
.. _MySQL: http://www.mysql.com/
|
2007-03-16 23:42:58 +08:00
|
|
|
.. _MySQL 5.0: http://dev.mysql.com/doc/refman/5.0/en/index.html
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-04-22 06:52:03 +08:00
|
|
|
.. _mysql-storage-engines:
|
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
Storage engines
|
2007-03-14 20:08:19 +08:00
|
|
|
---------------
|
|
|
|
|
|
|
|
MySQL has several `storage engines`_ (previously called table types). You can
|
|
|
|
change the default storage engine in the server configuration.
|
|
|
|
|
2012-02-19 15:39:05 +08:00
|
|
|
Until MySQL 5.5.4, the default engine was MyISAM_ [#]_. The main drawbacks of
|
2012-03-03 01:16:52 +08:00
|
|
|
MyISAM are that it doesn't support transactions or enforce foreign-key
|
2012-02-19 15:39:05 +08:00
|
|
|
constraints. On the plus side, it's currently the only engine that supports
|
|
|
|
full-text indexing and searching.
|
|
|
|
|
|
|
|
Since MySQL 5.5.5, the default storage engine is InnoDB_. This engine is fully
|
|
|
|
transactional and supports foreign key references. It's probably the best
|
2012-03-03 01:16:52 +08:00
|
|
|
choice at this point.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-08-07 08:43:26 +08:00
|
|
|
.. versionchanged:: 1.4
|
|
|
|
|
|
|
|
In previous versions of Django, fixtures with forward references (i.e.
|
|
|
|
relations to rows that have not yet been inserted into the database) would fail
|
|
|
|
to load when using the InnoDB storage engine. This was due to the fact that InnoDB
|
|
|
|
deviates from the SQL standard by checking foreign key constraints immediately
|
|
|
|
instead of deferring the check until the transaction is committed. This
|
|
|
|
problem has been resolved in Django 1.4. Fixture data is now loaded with foreign key
|
|
|
|
checks turned off; foreign key checks are then re-enabled when the data has
|
|
|
|
finished loading, at which point the entire table is checked for invalid foreign
|
|
|
|
key references and an `IntegrityError` is raised if any are found.
|
|
|
|
|
2011-01-23 00:16:42 +08:00
|
|
|
.. _storage engines: http://dev.mysql.com/doc/refman/5.5/en/storage-engines.html
|
|
|
|
.. _MyISAM: http://dev.mysql.com/doc/refman/5.5/en/myisam-storage-engine.html
|
|
|
|
.. _InnoDB: http://dev.mysql.com/doc/refman/5.5/en/innodb.html
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2008-10-05 14:56:15 +08:00
|
|
|
.. [#] Unless this was changed by the packager of your MySQL package. We've
|
|
|
|
had reports that the Windows Community Server installer sets up InnoDB as
|
|
|
|
the default storage engine, for example.
|
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
MySQLdb
|
|
|
|
-------
|
|
|
|
|
2007-04-20 21:33:09 +08:00
|
|
|
`MySQLdb`_ is the Python interface to MySQL. Version 1.2.1p2 or later is
|
2008-08-26 08:09:29 +08:00
|
|
|
required for full MySQL support in Django.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-10-20 18:47:57 +08:00
|
|
|
.. note::
|
|
|
|
If you see ``ImportError: cannot import name ImmutableSet`` when trying to
|
|
|
|
use Django, your MySQLdb installation may contain an outdated ``sets.py``
|
|
|
|
file that conflicts with the built-in module of the same name from Python
|
|
|
|
2.4 and later. To fix this, verify that you have installed MySQLdb version
|
|
|
|
1.2.1p2 or newer, then delete the ``sets.py`` file in the MySQLdb
|
|
|
|
directory that was left by an earlier version.
|
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
.. _MySQLdb: http://sourceforge.net/projects/mysql-python
|
|
|
|
|
|
|
|
Creating your database
|
2007-03-16 23:42:58 +08:00
|
|
|
----------------------
|
2007-03-14 20:08:19 +08:00
|
|
|
|
|
|
|
You can `create your database`_ using the command-line tools and this SQL::
|
|
|
|
|
|
|
|
CREATE DATABASE <dbname> CHARACTER SET utf8;
|
2007-03-16 23:42:58 +08:00
|
|
|
|
|
|
|
This ensures all tables and columns will use UTF-8 by default.
|
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
.. _create your database: http://dev.mysql.com/doc/refman/5.0/en/create-database.html
|
|
|
|
|
2008-08-26 09:59:25 +08:00
|
|
|
.. _mysql-collation:
|
|
|
|
|
|
|
|
Collation settings
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The collation setting for a column controls the order in which data is sorted
|
|
|
|
as well as what strings compare as equal. It can be set on a database-wide
|
|
|
|
level and also per-table and per-column. This is `documented thoroughly`_ in
|
|
|
|
the MySQL documentation. In all cases, you set the collation by directly
|
|
|
|
manipulating the database tables; Django doesn't provide a way to set this on
|
|
|
|
the model definition.
|
|
|
|
|
|
|
|
.. _documented thoroughly: http://dev.mysql.com/doc/refman/5.0/en/charset.html
|
|
|
|
|
|
|
|
By default, with a UTF-8 database, MySQL will use the
|
|
|
|
``utf8_general_ci_swedish`` collation. This results in all string equality
|
|
|
|
comparisons being done in a *case-insensitive* manner. That is, ``"Fred"`` and
|
|
|
|
``"freD"`` are considered equal at the database level. If you have a unique
|
|
|
|
constraint on a field, it would be illegal to try to insert both ``"aa"`` and
|
|
|
|
``"AA"`` into the same column, since they compare as equal (and, hence,
|
|
|
|
non-unique) with the default collation.
|
|
|
|
|
|
|
|
In many cases, this default will not be a problem. However, if you really want
|
|
|
|
case-sensitive comparisons on a particular column or table, you would change
|
|
|
|
the column or table to use the ``utf8_bin`` collation. The main thing to be
|
2010-12-03 06:37:15 +08:00
|
|
|
aware of in this case is that if you are using MySQLdb 1.2.2, the database
|
|
|
|
backend in Django will then return bytestrings (instead of unicode strings) for
|
|
|
|
any character fields it receive from the database. This is a strong variation
|
|
|
|
from Django's normal practice of *always* returning unicode strings. It is up
|
|
|
|
to you, the developer, to handle the fact that you will receive bytestrings if
|
|
|
|
you configure your table(s) to use ``utf8_bin`` collation. Django itself should
|
|
|
|
mostly work smoothly with such columns (except for the ``contrib.sessions``
|
|
|
|
``Session`` and ``contrib.admin`` ``LogEntry`` tables described below), but
|
2012-07-21 16:00:10 +08:00
|
|
|
your code must be prepared to call ``django.utils.encoding.smart_text()`` at
|
2010-12-03 06:37:15 +08:00
|
|
|
times if it really wants to work with consistent data -- Django will not do
|
|
|
|
this for you (the database backend layer and the model population layer are
|
|
|
|
separated internally so the database layer doesn't know it needs to make this
|
|
|
|
conversion in this one particular case).
|
2008-08-26 09:59:25 +08:00
|
|
|
|
|
|
|
If you're using MySQLdb 1.2.1p2, Django's standard
|
|
|
|
:class:`~django.db.models.CharField` class will return unicode strings even
|
|
|
|
with ``utf8_bin`` collation. However, :class:`~django.db.models.TextField`
|
|
|
|
fields will be returned as an ``array.array`` instance (from Python's standard
|
|
|
|
``array`` module). There isn't a lot Django can do about that, since, again,
|
|
|
|
the information needed to make the necessary conversions isn't available when
|
|
|
|
the data is read in from the database. This problem was `fixed in MySQLdb
|
|
|
|
1.2.2`_, so if you want to use :class:`~django.db.models.TextField` with
|
|
|
|
``utf8_bin`` collation, upgrading to version 1.2.2 and then dealing with the
|
2010-12-03 06:37:15 +08:00
|
|
|
bytestrings (which shouldn't be too difficult) as described above is the
|
|
|
|
recommended solution.
|
2008-08-26 09:59:25 +08:00
|
|
|
|
|
|
|
Should you decide to use ``utf8_bin`` collation for some of your tables with
|
2010-12-03 06:37:15 +08:00
|
|
|
MySQLdb 1.2.1p2 or 1.2.2, you should still use ``utf8_collation_ci_swedish``
|
|
|
|
(the default) collation for the :class:`django.contrib.sessions.models.Session`
|
2009-07-03 15:15:48 +08:00
|
|
|
table (usually called ``django_session``) and the
|
2008-08-26 09:59:25 +08:00
|
|
|
:class:`django.contrib.admin.models.LogEntry` table (usually called
|
|
|
|
``django_admin_log``). Those are the two standard tables that use
|
2011-03-04 03:31:10 +08:00
|
|
|
:class:`~django.db.models.TextField` internally.
|
2008-08-26 09:59:25 +08:00
|
|
|
|
|
|
|
.. _fixed in MySQLdb 1.2.2: http://sourceforge.net/tracker/index.php?func=detail&aid=1495765&group_id=22307&atid=374932
|
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
Connecting to the database
|
2007-03-16 23:42:58 +08:00
|
|
|
--------------------------
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
Refer to the :doc:`settings documentation </ref/settings>`.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
|
|
|
Connection settings are used in this order:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
1. :setting:`OPTIONS`.
|
|
|
|
2. :setting:`NAME`, :setting:`USER`, :setting:`PASSWORD`,
|
|
|
|
:setting:`HOST`, :setting:`PORT`
|
|
|
|
3. MySQL option files.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-05-30 01:41:04 +08:00
|
|
|
In other words, if you set the name of the database in :setting:`OPTIONS`,
|
|
|
|
this will take precedence over :setting:`NAME`, which would override
|
2007-03-14 20:08:19 +08:00
|
|
|
anything in a `MySQL option file`_.
|
|
|
|
|
|
|
|
Here's a sample configuration which uses a MySQL option file::
|
|
|
|
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
# settings.py
|
2009-12-22 23:18:51 +08:00
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'OPTIONS': {
|
|
|
|
'read_default_file': '/path/to/my.cnf',
|
|
|
|
},
|
|
|
|
}
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
}
|
2009-06-24 22:00:53 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
# my.cnf
|
|
|
|
[client]
|
2009-12-22 23:18:51 +08:00
|
|
|
database = NAME
|
|
|
|
user = USER
|
|
|
|
password = PASSWORD
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
default-character-set = utf8
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
Several other MySQLdb connection options may be useful, such as ``ssl``,
|
|
|
|
``use_unicode``, ``init_command``, and ``sql_mode``. Consult the
|
2007-03-14 20:08:19 +08:00
|
|
|
`MySQLdb documentation`_ for more details.
|
2007-03-16 23:42:58 +08:00
|
|
|
|
2007-03-14 20:08:19 +08:00
|
|
|
.. _MySQL option file: http://dev.mysql.com/doc/refman/5.0/en/option-files.html
|
|
|
|
.. _MySQLdb documentation: http://mysql-python.sourceforge.net/
|
|
|
|
|
|
|
|
Creating your tables
|
2007-03-16 23:42:58 +08:00
|
|
|
--------------------
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
When Django generates the schema, it doesn't specify a storage engine, so
|
|
|
|
tables will be created with whatever default storage engine your database
|
|
|
|
server is configured for. The easiest solution is to set your database server's
|
|
|
|
default storage engine to the desired engine.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2007-03-16 23:42:58 +08:00
|
|
|
If you're using a hosting service and can't change your server's default
|
2007-03-14 20:08:19 +08:00
|
|
|
storage engine, you have a couple of options.
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* After the tables are created, execute an ``ALTER TABLE`` statement to
|
|
|
|
convert a table to a new storage engine (such as InnoDB)::
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
ALTER TABLE <tablename> ENGINE=INNODB;
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
This can be tedious if you have a lot of tables.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Another option is to use the ``init_command`` option for MySQLdb prior to
|
|
|
|
creating your tables::
|
2007-03-16 23:42:58 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
'OPTIONS': {
|
|
|
|
'init_command': 'SET storage_engine=INNODB',
|
|
|
|
}
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
This sets the default storage engine upon connecting to the database.
|
2012-07-01 19:25:24 +08:00
|
|
|
After your tables have been created, you should remove this option as it
|
|
|
|
adds a query that is only needed during table creation to each database
|
|
|
|
connection.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Another method for changing the storage engine is described in
|
|
|
|
AlterModelOnSyncDB_.
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2012-03-14 01:53:31 +08:00
|
|
|
.. _AlterModelOnSyncDB: https://code.djangoproject.com/wiki/AlterModelOnSyncDB
|
2007-03-14 20:08:19 +08:00
|
|
|
|
2011-09-11 04:06:10 +08:00
|
|
|
Table names
|
|
|
|
-----------
|
|
|
|
|
|
|
|
There are `known issues`_ in even the latest versions of MySQL that can cause the
|
|
|
|
case of a table name to be altered when certain SQL statements are executed
|
|
|
|
under certain conditions. It is recommended that you use lowercase table
|
|
|
|
names, if possible, to avoid any problems that might arise from this behavior.
|
|
|
|
Django uses lowercase table names when it auto-generates table names from
|
|
|
|
models, so this is mainly a consideration if you are overriding the table name
|
|
|
|
via the :class:`~django.db.models.Options.db_table` parameter.
|
|
|
|
|
|
|
|
.. _known issues: http://bugs.mysql.com/bug.php?id=48875
|
|
|
|
|
2012-04-22 06:52:03 +08:00
|
|
|
Savepoints
|
|
|
|
----------
|
|
|
|
|
|
|
|
Both the Django ORM and MySQL (when using the InnoDB :ref:`storage engine
|
|
|
|
<mysql-storage-engines>`) support database :ref:`savepoints
|
|
|
|
<topics-db-transactions-savepoints>`, but this feature wasn't available in
|
|
|
|
Django until version 1.4 when such supports was added.
|
|
|
|
|
|
|
|
If you use the MyISAM storage engine please be aware of the fact that you will
|
|
|
|
receive database-generated errors if you try to use the :ref:`savepoint-related
|
|
|
|
methods of the transactions API <topics-db-transactions-savepoints>`. The reason
|
|
|
|
for this is that detecting the storage engine of a MySQL database/table is an
|
|
|
|
expensive operation so it was decided it isn't worth to dynamically convert
|
|
|
|
these methods in no-op's based in the results of such detection.
|
|
|
|
|
2008-12-16 14:43:18 +08:00
|
|
|
Notes on specific fields
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Character fields
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Any fields that are stored with ``VARCHAR`` column types have their
|
|
|
|
``max_length`` restricted to 255 characters if you are using ``unique=True``
|
|
|
|
for the field. This affects :class:`~django.db.models.CharField`,
|
|
|
|
:class:`~django.db.models.SlugField` and
|
|
|
|
:class:`~django.db.models.CommaSeparatedIntegerField`.
|
|
|
|
|
2010-12-28 21:35:48 +08:00
|
|
|
DateTime fields
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
MySQL does not have a timezone-aware column type. If an attempt is made to
|
|
|
|
store a timezone-aware ``time`` or ``datetime`` to a
|
|
|
|
:class:`~django.db.models.TimeField` or :class:`~django.db.models.DateTimeField`
|
|
|
|
respectively, a ``ValueError`` is raised rather than truncating data.
|
|
|
|
|
2011-11-14 03:28:43 +08:00
|
|
|
MySQL does not store fractions of seconds. Fractions of seconds are truncated
|
|
|
|
to zero when the time is stored.
|
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
Row locking with ``QuerySet.select_for_update()``
|
|
|
|
-------------------------------------------------
|
|
|
|
|
|
|
|
MySQL does not support the ``NOWAIT`` option to the ``SELECT ... FOR UPDATE``
|
|
|
|
statement. If ``select_for_update()`` is used with ``nowait=True`` then a
|
|
|
|
``DatabaseError`` will be raised.
|
|
|
|
|
2008-09-04 05:10:42 +08:00
|
|
|
.. _sqlite-notes:
|
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
SQLite notes
|
|
|
|
============
|
|
|
|
|
2009-01-06 11:34:47 +08:00
|
|
|
SQLite_ provides an excellent development alternative for applications that
|
|
|
|
are predominantly read-only or require a smaller installation footprint. As
|
|
|
|
with all database servers, though, there are some differences that are
|
|
|
|
specific to SQLite that you should be aware of.
|
|
|
|
|
|
|
|
.. _SQLite: http://www.sqlite.org/
|
|
|
|
|
|
|
|
.. _sqlite-string-matching:
|
|
|
|
|
2011-08-26 16:42:38 +08:00
|
|
|
Substring matching and case sensitivity
|
|
|
|
-----------------------------------------
|
|
|
|
|
|
|
|
For all SQLite versions, there is some slightly counter-intuitive behavior when
|
|
|
|
attempting to match some types of strings. These are triggered when using the
|
|
|
|
:lookup:`iexact` or :lookup:`contains` filters in Querysets. The behavior
|
|
|
|
splits into two cases:
|
|
|
|
|
|
|
|
1. For substring matching, all matches are done case-insensitively. That is a
|
|
|
|
filter such as ``filter(name__contains="aa")`` will match a name of ``"Aabb"``.
|
|
|
|
|
|
|
|
2. For strings containing characters outside the ASCII range, all exact string
|
|
|
|
matches are performed case-sensitively, even when the case-insensitive options
|
|
|
|
are passed into the query. So the :lookup:`iexact` filter will behave exactly
|
|
|
|
the same as the :lookup:`exact` filter in these cases.
|
|
|
|
|
|
|
|
Some possible workarounds for this are `documented at sqlite.org`_, but they
|
|
|
|
aren't utilised by the default SQLite backend in Django, as incorporating them
|
|
|
|
would be fairly difficult to do robustly. Thus, Django exposes the default
|
|
|
|
SQLite behavior and you should be aware of this when doing case-insensitive or
|
|
|
|
substring filtering.
|
2009-01-06 11:34:47 +08:00
|
|
|
|
|
|
|
.. _documented at sqlite.org: http://www.sqlite.org/faq.html#q18
|
|
|
|
|
2009-04-01 09:36:44 +08:00
|
|
|
SQLite 3.3.6 or newer strongly recommended
|
|
|
|
------------------------------------------
|
|
|
|
|
|
|
|
Versions of SQLite 3.3.5 and older contains the following bugs:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* A bug when `handling`_ ``ORDER BY`` parameters. This can cause problems when
|
|
|
|
you use the ``select`` parameter for the ``extra()`` QuerySet method. The bug
|
|
|
|
can be identified by the error message ``OperationalError: ORDER BY terms
|
|
|
|
must not be non-integer constants``.
|
2009-04-01 09:36:44 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* A bug when handling `aggregation`_ together with DateFields and
|
|
|
|
DecimalFields.
|
2009-04-01 09:36:44 +08:00
|
|
|
|
|
|
|
.. _handling: http://www.sqlite.org/cvstrac/tktview?tn=1768
|
2012-03-14 01:53:31 +08:00
|
|
|
.. _aggregation: https://code.djangoproject.com/ticket/10031
|
2009-04-01 09:36:44 +08:00
|
|
|
|
|
|
|
SQLite 3.3.6 was released in April 2006, so most current binary distributions
|
|
|
|
for different platforms include newer version of SQLite usable from Python
|
|
|
|
through either the ``pysqlite2`` or the ``sqlite3`` modules.
|
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
Version 3.5.9
|
|
|
|
-------------
|
|
|
|
|
2009-04-01 09:36:44 +08:00
|
|
|
The Ubuntu "Intrepid Ibex" (8.10) SQLite 3.5.9-3 package contains a bug that
|
|
|
|
causes problems with the evaluation of query expressions. If you are using
|
|
|
|
Ubuntu "Intrepid Ibex", you will need to update the package to version
|
|
|
|
3.5.9-3ubuntu1 or newer (recommended) or find an alternate source for SQLite
|
2009-01-29 18:46:36 +08:00
|
|
|
packages, or install SQLite from source.
|
|
|
|
|
|
|
|
At one time, Debian Lenny shipped with the same malfunctioning SQLite 3.5.9-3
|
|
|
|
package. However the Debian project has subsequently issued updated versions
|
|
|
|
of the SQLite package that correct these bugs. If you find you are getting
|
|
|
|
unexpected results under Debian, ensure you have updated your SQLite package
|
|
|
|
to 3.5.9-5 or later.
|
|
|
|
|
|
|
|
The problem does not appear to exist with other versions of SQLite packaged
|
|
|
|
with other operating systems.
|
|
|
|
|
2008-12-02 13:58:15 +08:00
|
|
|
Version 3.6.2
|
|
|
|
--------------
|
|
|
|
|
|
|
|
SQLite version 3.6.2 (released August 30, 2008) introduced a bug into ``SELECT
|
|
|
|
DISTINCT`` handling that is triggered by, amongst other things, Django's
|
|
|
|
``DateQuerySet`` (returned by the ``dates()`` method on a queryset).
|
|
|
|
|
|
|
|
You should avoid using this version of SQLite with Django. Either upgrade to
|
|
|
|
3.6.3 (released September 22, 2008) or later, or downgrade to an earlier
|
|
|
|
version of SQLite.
|
|
|
|
|
2009-04-01 09:36:44 +08:00
|
|
|
.. _using-newer-versions-of-pysqlite:
|
|
|
|
|
|
|
|
Using newer versions of the SQLite DB-API 2.0 driver
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
|
|
For versions of Python 2.5 or newer that include ``sqlite3`` in the standard
|
|
|
|
library Django will now use a ``pysqlite2`` interface in preference to
|
|
|
|
``sqlite3`` if it finds one is available.
|
|
|
|
|
|
|
|
This provides the ability to upgrade both the DB-API 2.0 interface or SQLite 3
|
|
|
|
itself to versions newer than the ones included with your particular Python
|
|
|
|
binary distribution, if needed.
|
|
|
|
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
"Database is locked" errors
|
2011-04-22 20:14:54 +08:00
|
|
|
---------------------------
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
|
|
|
|
SQLite is meant to be a lightweight database, and thus can't support a high
|
|
|
|
level of concurrency. ``OperationalError: database is locked`` errors indicate
|
|
|
|
that your application is experiencing more concurrency than ``sqlite`` can
|
|
|
|
handle in default configuration. This error means that one thread or process has
|
|
|
|
an exclusive lock on the database connection and another thread timed out
|
|
|
|
waiting for the lock the be released.
|
|
|
|
|
|
|
|
Python's SQLite wrapper has
|
|
|
|
a default timeout value that determines how long the second thread is allowed to
|
|
|
|
wait on the lock before it times out and raises the ``OperationalError: database
|
|
|
|
is locked`` error.
|
|
|
|
|
|
|
|
If you're getting this error, you can solve it by:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Switching to another database backend. At a certain point SQLite becomes
|
|
|
|
too "lite" for real-world applications, and these sorts of concurrency
|
|
|
|
errors indicate you've reached that point.
|
2009-06-24 22:00:53 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Rewriting your code to reduce concurrency and ensure that database
|
|
|
|
transactions are short-lived.
|
2009-06-24 22:00:53 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Increase the default timeout value by setting the ``timeout`` database
|
|
|
|
option option::
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
'OPTIONS': {
|
|
|
|
# ...
|
|
|
|
'timeout': 20,
|
|
|
|
# ...
|
|
|
|
}
|
2009-06-24 22:00:53 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
This will simply make SQLite wait a bit longer before throwing "database
|
|
|
|
is locked" errors; it won't really do anything to solve them.
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
``QuerySet.select_for_update()`` not supported
|
|
|
|
----------------------------------------------
|
|
|
|
|
|
|
|
SQLite does not support the ``SELECT ... FOR UPDATE`` syntax. Calling it will
|
|
|
|
have no effect.
|
|
|
|
|
2011-04-22 20:14:54 +08:00
|
|
|
.. _sqlite-connection-queries:
|
|
|
|
|
|
|
|
Parameters not quoted in ``connection.queries``
|
|
|
|
-----------------------------------------------
|
|
|
|
|
|
|
|
``sqlite3`` does not provide a way to retrieve the SQL after quoting and
|
|
|
|
substituting the parameters. Instead, the SQL in ``connection.queries`` is
|
|
|
|
rebuilt with a simple string interpolation. It may be incorrect. Make sure
|
|
|
|
you add quotes where necessary before copying a query into a SQLite shell.
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. _oracle-notes:
|
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
Oracle notes
|
2007-09-29 03:25:50 +08:00
|
|
|
============
|
|
|
|
|
2009-02-28 14:03:18 +08:00
|
|
|
Django supports `Oracle Database Server`_ versions 9i and
|
|
|
|
higher. Oracle version 10g or later is required to use Django's
|
|
|
|
``regex`` and ``iregex`` query operators. You will also need at least
|
|
|
|
version 4.3.1 of the `cx_Oracle`_ Python driver.
|
|
|
|
|
|
|
|
Note that due to a Unicode-corruption bug in ``cx_Oracle`` 5.0, that
|
|
|
|
version of the driver should **not** be used with Django;
|
|
|
|
``cx_Oracle`` 5.0.1 resolved this issue, so if you'd like to use a
|
|
|
|
more recent ``cx_Oracle``, use version 5.0.1.
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2009-08-24 23:45:48 +08:00
|
|
|
``cx_Oracle`` 5.0.1 or greater can optionally be compiled with the
|
|
|
|
``WITH_UNICODE`` environment variable. This is recommended but not
|
|
|
|
required.
|
|
|
|
|
2007-09-29 03:25:50 +08:00
|
|
|
.. _`Oracle Database Server`: http://www.oracle.com/
|
|
|
|
.. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
|
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
In order for the ``python manage.py syncdb`` command to work, your Oracle
|
|
|
|
database user must have privileges to run the following commands:
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* CREATE TABLE
|
|
|
|
* CREATE SEQUENCE
|
|
|
|
* CREATE PROCEDURE
|
|
|
|
* CREATE TRIGGER
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
To run Django's test suite, the user needs these *additional* privileges:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* CREATE USER
|
|
|
|
* DROP USER
|
|
|
|
* CREATE TABLESPACE
|
|
|
|
* DROP TABLESPACE
|
|
|
|
* CONNECT WITH ADMIN OPTION
|
|
|
|
* RESOURCE WITH ADMIN OPTION
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
Connecting to the database
|
2007-09-29 03:25:50 +08:00
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Your Django settings.py file should look something like this for Oracle::
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.oracle',
|
|
|
|
'NAME': 'xe',
|
|
|
|
'USER': 'a_user',
|
|
|
|
'PASSWORD': 'a_password',
|
|
|
|
'HOST': '',
|
2010-11-20 07:19:23 +08:00
|
|
|
'PORT': '',
|
2009-12-22 23:18:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-29 03:25:50 +08:00
|
|
|
|
|
|
|
If you don't use a ``tnsnames.ora`` file or a similar naming method that
|
2008-08-24 06:25:40 +08:00
|
|
|
recognizes the SID ("xe" in this example), then fill in both
|
2011-05-30 01:41:04 +08:00
|
|
|
:setting:`HOST` and :setting:`PORT` like so::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.oracle',
|
|
|
|
'NAME': 'xe',
|
|
|
|
'USER': 'a_user',
|
|
|
|
'PASSWORD': 'a_password',
|
|
|
|
'HOST': 'dbprod01ned.mycompany.com',
|
|
|
|
'PORT': '1540',
|
|
|
|
}
|
|
|
|
}
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2011-05-30 01:41:04 +08:00
|
|
|
You should supply both :setting:`HOST` and :setting:`PORT`, or leave both
|
2007-09-29 03:25:50 +08:00
|
|
|
as empty strings.
|
|
|
|
|
2010-11-20 07:19:23 +08:00
|
|
|
Threaded option
|
|
|
|
----------------
|
|
|
|
|
|
|
|
If you plan to run Django in a multithreaded environment (e.g. Apache in Windows
|
|
|
|
using the default MPM module), then you **must** set the ``threaded`` option of
|
|
|
|
your Oracle database configuration to True::
|
|
|
|
|
|
|
|
'OPTIONS': {
|
|
|
|
'threaded': True,
|
|
|
|
},
|
|
|
|
|
|
|
|
Failure to do this may result in crashes and other odd behavior.
|
|
|
|
|
2010-12-02 07:36:56 +08:00
|
|
|
INSERT ... RETURNING INTO
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
By default, the Oracle backend uses a ``RETURNING INTO`` clause to efficiently
|
|
|
|
retrieve the value of an ``AutoField`` when inserting new rows. This behavior
|
|
|
|
may result in a ``DatabaseError`` in certain unusual setups, such as when
|
|
|
|
inserting into a remote table, or into a view with an ``INSTEAD OF`` trigger.
|
|
|
|
The ``RETURNING INTO`` clause can be disabled by setting the
|
|
|
|
``use_returning_into`` option of the database configuration to False::
|
|
|
|
|
|
|
|
'OPTIONS': {
|
|
|
|
'use_returning_into': False,
|
|
|
|
},
|
|
|
|
|
|
|
|
In this case, the Oracle backend will use a separate ``SELECT`` query to
|
|
|
|
retrieve AutoField values.
|
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
Naming issues
|
2007-09-29 03:25:50 +08:00
|
|
|
-------------
|
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
Oracle imposes a name length limit of 30 characters. To accommodate this, the
|
2007-09-29 03:25:50 +08:00
|
|
|
backend truncates database identifiers to fit, replacing the final four
|
|
|
|
characters of the truncated name with a repeatable MD5 hash value.
|
|
|
|
|
2010-01-29 06:12:18 +08:00
|
|
|
When running syncdb, an ``ORA-06552`` error may be encountered if
|
|
|
|
certain Oracle keywords are used as the name of a model field or the
|
|
|
|
value of a ``db_column`` option. Django quotes all identifiers used
|
|
|
|
in queries to prevent most such problems, but this error can still
|
|
|
|
occur when an Oracle datatype is used as a column name. In
|
|
|
|
particular, take care to avoid using the names ``date``,
|
|
|
|
``timestamp``, ``number`` or ``float`` as a field name.
|
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
NULL and empty strings
|
2007-09-29 03:25:50 +08:00
|
|
|
----------------------
|
|
|
|
|
2009-03-06 04:21:22 +08:00
|
|
|
Django generally prefers to use the empty string ('') rather than
|
|
|
|
NULL, but Oracle treats both identically. To get around this, the
|
2012-04-30 00:25:46 +08:00
|
|
|
Oracle backend ignores an explicit ``null`` option on fields that
|
|
|
|
have the empty string as a possible value and generates DDL as if
|
|
|
|
``null=True``. When fetching from the database, it is assumed that
|
|
|
|
a ``NULL`` value in one of these fields really means the empty
|
|
|
|
string, and the data is silently converted to reflect this assumption.
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
``TextField`` limitations
|
|
|
|
-------------------------
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2007-11-30 13:03:32 +08:00
|
|
|
The Oracle backend stores ``TextFields`` as ``NCLOB`` columns. Oracle imposes
|
2007-09-29 03:25:50 +08:00
|
|
|
some limitations on the usage of such LOB columns in general:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* LOB columns may not be used as primary keys.
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* LOB columns may not be used in indexes.
|
2007-09-29 03:25:50 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* LOB columns may not be used in a ``SELECT DISTINCT`` list. This means that
|
2011-10-14 08:16:14 +08:00
|
|
|
attempting to use the ``QuerySet.distinct`` method on a model that
|
|
|
|
includes ``TextField`` columns will result in an error when run against
|
|
|
|
Oracle. As a workaround, use the ``QuerySet.defer`` method in conjunction
|
|
|
|
with ``distinct()`` to prevent ``TextField`` columns from being included in
|
|
|
|
the ``SELECT DISTINCT`` list.
|
2009-06-24 22:00:53 +08:00
|
|
|
|
|
|
|
.. _third-party-notes:
|
|
|
|
|
|
|
|
Using a 3rd-party database backend
|
|
|
|
==================================
|
|
|
|
|
|
|
|
In addition to the officially supported databases, there are backends provided
|
|
|
|
by 3rd parties that allow you to use other databases with Django:
|
|
|
|
|
|
|
|
* `Sybase SQL Anywhere`_
|
|
|
|
* `IBM DB2`_
|
|
|
|
* `Microsoft SQL Server 2005`_
|
|
|
|
* Firebird_
|
|
|
|
* ODBC_
|
2011-08-19 05:57:57 +08:00
|
|
|
* ADSDB_
|
2009-06-24 22:00:53 +08:00
|
|
|
|
|
|
|
The Django versions and ORM features supported by these unofficial backends
|
|
|
|
vary considerably. Queries regarding the specific capabilities of these
|
|
|
|
unofficial backends, along with any support queries, should be directed to
|
|
|
|
the support channels provided by each 3rd party project.
|
|
|
|
|
|
|
|
.. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/
|
|
|
|
.. _IBM DB2: http://code.google.com/p/ibm-db/
|
|
|
|
.. _Microsoft SQL Server 2005: http://code.google.com/p/django-mssql/
|
|
|
|
.. _Firebird: http://code.google.com/p/django-firebird/
|
|
|
|
.. _ODBC: http://code.google.com/p/django-pyodbc/
|
2011-08-19 05:57:57 +08:00
|
|
|
.. _ADSDB: http://code.google.com/p/adsdb-django/
|