databases.txt 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739
  1. =========
  2. Databases
  3. =========
  4. Django attempts to support as many features as possible on all database
  5. backends. However, not all database backends are alike, and we've had to make
  6. design decisions on which features to support and which assumptions we can make
  7. safely.
  8. This file describes some of the features that might be relevant to Django
  9. usage. Of course, it is not intended as a replacement for server-specific
  10. documentation or reference manuals.
  11. .. _postgresql-notes:
  12. PostgreSQL notes
  13. ================
  14. .. versionchanged:: 1.4
  15. Django supports PostgreSQL 8.2 and higher.
  16. PostgreSQL 8.2 to 8.2.4
  17. -----------------------
  18. The implementation of the population statistics aggregates ``STDDEV_POP`` and
  19. ``VAR_POP`` that shipped with PostgreSQL 8.2 to 8.2.4 are `known to be
  20. faulty`_. Users of these releases of PostgreSQL are advised to upgrade to
  21. `Release 8.2.5`_ or later. Django will raise a ``NotImplementedError`` if you
  22. attempt to use the ``StdDev(sample=False)`` or ``Variance(sample=False)``
  23. aggregate with a database backend that falls within the affected release range.
  24. .. _known to be faulty: http://archives.postgresql.org/pgsql-bugs/2007-07/msg00046.php
  25. .. _Release 8.2.5: http://www.postgresql.org/docs/devel/static/release-8-2-5.html
  26. Optimizing PostgreSQL's configuration
  27. -------------------------------------
  28. Django needs the following parameters for its database connections:
  29. - ``client_encoding``: ``'UTF8'``,
  30. - ``default_transaction_isolation``: ``'read committed'``,
  31. - ``timezone``: ``'UTC'`` when :setting:`USE_TZ` is ``True``, value of
  32. :setting:`TIME_ZONE` otherwise.
  33. If these parameters already have the correct values, Django won't set them for
  34. every new connection, which improves performance slightly. You can configure
  35. them directly in :file:`postgresql.conf` or more conveniently per database
  36. user with `ALTER ROLE`_.
  37. Django will work just fine without this optimization, but each new connection
  38. will do some additional queries to set these parameters.
  39. .. _ALTER ROLE: http://www.postgresql.org/docs/current/interactive/sql-alterrole.html
  40. Transaction handling
  41. ---------------------
  42. :doc:`By default </topics/db/transactions>`, Django runs with an open
  43. transaction which it commits automatically when any built-in, data-altering
  44. model function is called. The PostgreSQL backends normally operate the same as
  45. any other Django backend in this respect.
  46. .. _postgresql-autocommit-mode:
  47. Autocommit mode
  48. ~~~~~~~~~~~~~~~
  49. If your application is particularly read-heavy and doesn't make many
  50. database writes, the overhead of a constantly open transaction can
  51. sometimes be noticeable. For those situations, you can configure Django
  52. to use *"autocommit"* behavior for the connection, meaning that each database
  53. operation will normally be in its own transaction, rather than having
  54. the transaction extend over multiple operations. In this case, you can
  55. still manually start a transaction if you're doing something that
  56. requires consistency across multiple database operations. The
  57. autocommit behavior is enabled by setting the ``autocommit`` key in
  58. the :setting:`OPTIONS` part of your database configuration in
  59. :setting:`DATABASES`::
  60. 'OPTIONS': {
  61. 'autocommit': True,
  62. }
  63. In this configuration, Django still ensures that :ref:`delete()
  64. <topics-db-queries-delete>` and :ref:`update() <topics-db-queries-update>`
  65. queries run inside a single transaction, so that either all the affected
  66. objects are changed or none of them are.
  67. .. admonition:: This is database-level autocommit
  68. This functionality is not the same as the :ref:`autocommit
  69. <topics-db-transactions-autocommit>` decorator. That decorator is
  70. a Django-level implementation that commits automatically after
  71. data changing operations. The feature enabled using the
  72. :setting:`OPTIONS` option provides autocommit behavior at the
  73. database adapter level. It commits after *every* operation.
  74. If you are using this feature and performing an operation akin to delete or
  75. updating that requires multiple operations, you are strongly recommended to
  76. wrap you operations in manual transaction handling to ensure data consistency.
  77. You should also audit your existing code for any instances of this behavior
  78. before enabling this feature. It's faster, but it provides less automatic
  79. protection for multi-call operations.
  80. Indexes for ``varchar`` and ``text`` columns
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. When specifying ``db_index=True`` on your model fields, Django typically
  83. outputs a single ``CREATE INDEX`` statement. However, if the database type
  84. for the field is either ``varchar`` or ``text`` (e.g., used by ``CharField``,
  85. ``FileField``, and ``TextField``), then Django will create
  86. an additional index that uses an appropriate `PostgreSQL operator class`_
  87. for the column. The extra index is necessary to correctly perform
  88. lookups that use the ``LIKE`` operator in their SQL, as is done with the
  89. ``contains`` and ``startswith`` lookup types.
  90. .. _PostgreSQL operator class: http://www.postgresql.org/docs/8.4/static/indexes-opclass.html
  91. .. _mysql-notes:
  92. MySQL notes
  93. ===========
  94. Version support
  95. ---------------
  96. Django supports MySQL 5.0.3 and higher.
  97. `MySQL 5.0`_ adds the ``information_schema`` database, which contains detailed
  98. data on all database schema. Django's ``inspectdb`` feature uses it.
  99. .. versionchanged:: 1.5
  100. The minimum version requirement of MySQL 5.0.3 was set in Django 1.5.
  101. Django expects the database to support Unicode (UTF-8 encoding) and delegates to
  102. it the task of enforcing transactions and referential integrity. It is important
  103. to be aware of the fact that the two latter ones aren't actually enforced by
  104. MySQL when using the MyISAM storage engine, see the next section.
  105. .. _MySQL: http://www.mysql.com/
  106. .. _MySQL 5.0: http://dev.mysql.com/doc/refman/5.0/en/index.html
  107. .. _mysql-storage-engines:
  108. Storage engines
  109. ---------------
  110. MySQL has several `storage engines`_ (previously called table types). You can
  111. change the default storage engine in the server configuration.
  112. Until MySQL 5.5.4, the default engine was MyISAM_ [#]_. The main drawbacks of
  113. MyISAM are that it doesn't support transactions or enforce foreign-key
  114. constraints. On the plus side, it's currently the only engine that supports
  115. full-text indexing and searching.
  116. Since MySQL 5.5.5, the default storage engine is InnoDB_. This engine is fully
  117. transactional and supports foreign key references. It's probably the best
  118. choice at this point.
  119. If you upgrade an existing project to MySQL 5.5.5 and subsequently add some
  120. tables, ensure that your tables are using the same storage engine (i.e. MyISAM
  121. vs. InnoDB). Specifically, if tables that have a ``ForeignKey`` between them
  122. use different storage engines, you may see an error like the following when
  123. running ``syncdb``::
  124. _mysql_exceptions.OperationalError: (
  125. 1005, "Can't create table '\\db_name\\.#sql-4a8_ab' (errno: 150)"
  126. )
  127. .. versionchanged:: 1.4
  128. In previous versions of Django, fixtures with forward references (i.e.
  129. relations to rows that have not yet been inserted into the database) would fail
  130. to load when using the InnoDB storage engine. This was due to the fact that InnoDB
  131. deviates from the SQL standard by checking foreign key constraints immediately
  132. instead of deferring the check until the transaction is committed. This
  133. problem has been resolved in Django 1.4. Fixture data is now loaded with foreign key
  134. checks turned off; foreign key checks are then re-enabled when the data has
  135. finished loading, at which point the entire table is checked for invalid foreign
  136. key references and an `IntegrityError` is raised if any are found.
  137. .. _storage engines: http://dev.mysql.com/doc/refman/5.5/en/storage-engines.html
  138. .. _MyISAM: http://dev.mysql.com/doc/refman/5.5/en/myisam-storage-engine.html
  139. .. _InnoDB: http://dev.mysql.com/doc/refman/5.5/en/innodb.html
  140. .. [#] Unless this was changed by the packager of your MySQL package. We've
  141. had reports that the Windows Community Server installer sets up InnoDB as
  142. the default storage engine, for example.
  143. MySQLdb
  144. -------
  145. `MySQLdb`_ is the Python interface to MySQL. Version 1.2.1p2 or later is
  146. required for full MySQL support in Django.
  147. .. note::
  148. If you see ``ImportError: cannot import name ImmutableSet`` when trying to
  149. use Django, your MySQLdb installation may contain an outdated ``sets.py``
  150. file that conflicts with the built-in module of the same name from Python
  151. 2.4 and later. To fix this, verify that you have installed MySQLdb version
  152. 1.2.1p2 or newer, then delete the ``sets.py`` file in the MySQLdb
  153. directory that was left by an earlier version.
  154. .. _MySQLdb: http://sourceforge.net/projects/mysql-python
  155. Creating your database
  156. ----------------------
  157. You can `create your database`_ using the command-line tools and this SQL::
  158. CREATE DATABASE <dbname> CHARACTER SET utf8;
  159. This ensures all tables and columns will use UTF-8 by default.
  160. .. _create your database: http://dev.mysql.com/doc/refman/5.0/en/create-database.html
  161. .. _mysql-collation:
  162. Collation settings
  163. ~~~~~~~~~~~~~~~~~~
  164. The collation setting for a column controls the order in which data is sorted
  165. as well as what strings compare as equal. It can be set on a database-wide
  166. level and also per-table and per-column. This is `documented thoroughly`_ in
  167. the MySQL documentation. In all cases, you set the collation by directly
  168. manipulating the database tables; Django doesn't provide a way to set this on
  169. the model definition.
  170. .. _documented thoroughly: http://dev.mysql.com/doc/refman/5.0/en/charset.html
  171. By default, with a UTF-8 database, MySQL will use the
  172. ``utf8_general_ci_swedish`` collation. This results in all string equality
  173. comparisons being done in a *case-insensitive* manner. That is, ``"Fred"`` and
  174. ``"freD"`` are considered equal at the database level. If you have a unique
  175. constraint on a field, it would be illegal to try to insert both ``"aa"`` and
  176. ``"AA"`` into the same column, since they compare as equal (and, hence,
  177. non-unique) with the default collation.
  178. In many cases, this default will not be a problem. However, if you really want
  179. case-sensitive comparisons on a particular column or table, you would change
  180. the column or table to use the ``utf8_bin`` collation. The main thing to be
  181. aware of in this case is that if you are using MySQLdb 1.2.2, the database
  182. backend in Django will then return bytestrings (instead of unicode strings) for
  183. any character fields it receive from the database. This is a strong variation
  184. from Django's normal practice of *always* returning unicode strings. It is up
  185. to you, the developer, to handle the fact that you will receive bytestrings if
  186. you configure your table(s) to use ``utf8_bin`` collation. Django itself should
  187. mostly work smoothly with such columns (except for the ``contrib.sessions``
  188. ``Session`` and ``contrib.admin`` ``LogEntry`` tables described below), but
  189. your code must be prepared to call ``django.utils.encoding.smart_text()`` at
  190. times if it really wants to work with consistent data -- Django will not do
  191. this for you (the database backend layer and the model population layer are
  192. separated internally so the database layer doesn't know it needs to make this
  193. conversion in this one particular case).
  194. If you're using MySQLdb 1.2.1p2, Django's standard
  195. :class:`~django.db.models.CharField` class will return unicode strings even
  196. with ``utf8_bin`` collation. However, :class:`~django.db.models.TextField`
  197. fields will be returned as an ``array.array`` instance (from Python's standard
  198. ``array`` module). There isn't a lot Django can do about that, since, again,
  199. the information needed to make the necessary conversions isn't available when
  200. the data is read in from the database. This problem was `fixed in MySQLdb
  201. 1.2.2`_, so if you want to use :class:`~django.db.models.TextField` with
  202. ``utf8_bin`` collation, upgrading to version 1.2.2 and then dealing with the
  203. bytestrings (which shouldn't be too difficult) as described above is the
  204. recommended solution.
  205. Should you decide to use ``utf8_bin`` collation for some of your tables with
  206. MySQLdb 1.2.1p2 or 1.2.2, you should still use ``utf8_collation_ci_swedish``
  207. (the default) collation for the :class:`django.contrib.sessions.models.Session`
  208. table (usually called ``django_session``) and the
  209. :class:`django.contrib.admin.models.LogEntry` table (usually called
  210. ``django_admin_log``). Those are the two standard tables that use
  211. :class:`~django.db.models.TextField` internally.
  212. .. _fixed in MySQLdb 1.2.2: http://sourceforge.net/tracker/index.php?func=detail&aid=1495765&group_id=22307&atid=374932
  213. Connecting to the database
  214. --------------------------
  215. Refer to the :doc:`settings documentation </ref/settings>`.
  216. Connection settings are used in this order:
  217. 1. :setting:`OPTIONS`.
  218. 2. :setting:`NAME`, :setting:`USER`, :setting:`PASSWORD`,
  219. :setting:`HOST`, :setting:`PORT`
  220. 3. MySQL option files.
  221. In other words, if you set the name of the database in :setting:`OPTIONS`,
  222. this will take precedence over :setting:`NAME`, which would override
  223. anything in a `MySQL option file`_.
  224. Here's a sample configuration which uses a MySQL option file::
  225. # settings.py
  226. DATABASES = {
  227. 'default': {
  228. 'ENGINE': 'django.db.backends.mysql',
  229. 'OPTIONS': {
  230. 'read_default_file': '/path/to/my.cnf',
  231. },
  232. }
  233. }
  234. # my.cnf
  235. [client]
  236. database = NAME
  237. user = USER
  238. password = PASSWORD
  239. default-character-set = utf8
  240. Several other MySQLdb connection options may be useful, such as ``ssl``,
  241. ``use_unicode``, ``init_command``, and ``sql_mode``. Consult the
  242. `MySQLdb documentation`_ for more details.
  243. .. _MySQL option file: http://dev.mysql.com/doc/refman/5.0/en/option-files.html
  244. .. _MySQLdb documentation: http://mysql-python.sourceforge.net/
  245. Creating your tables
  246. --------------------
  247. When Django generates the schema, it doesn't specify a storage engine, so
  248. tables will be created with whatever default storage engine your database
  249. server is configured for. The easiest solution is to set your database server's
  250. default storage engine to the desired engine.
  251. If you're using a hosting service and can't change your server's default
  252. storage engine, you have a couple of options.
  253. * After the tables are created, execute an ``ALTER TABLE`` statement to
  254. convert a table to a new storage engine (such as InnoDB)::
  255. ALTER TABLE <tablename> ENGINE=INNODB;
  256. This can be tedious if you have a lot of tables.
  257. * Another option is to use the ``init_command`` option for MySQLdb prior to
  258. creating your tables::
  259. 'OPTIONS': {
  260. 'init_command': 'SET storage_engine=INNODB',
  261. }
  262. This sets the default storage engine upon connecting to the database.
  263. After your tables have been created, you should remove this option as it
  264. adds a query that is only needed during table creation to each database
  265. connection.
  266. * Another method for changing the storage engine is described in
  267. AlterModelOnSyncDB_.
  268. .. _AlterModelOnSyncDB: https://code.djangoproject.com/wiki/AlterModelOnSyncDB
  269. Table names
  270. -----------
  271. There are `known issues`_ in even the latest versions of MySQL that can cause the
  272. case of a table name to be altered when certain SQL statements are executed
  273. under certain conditions. It is recommended that you use lowercase table
  274. names, if possible, to avoid any problems that might arise from this behavior.
  275. Django uses lowercase table names when it auto-generates table names from
  276. models, so this is mainly a consideration if you are overriding the table name
  277. via the :class:`~django.db.models.Options.db_table` parameter.
  278. .. _known issues: http://bugs.mysql.com/bug.php?id=48875
  279. Savepoints
  280. ----------
  281. Both the Django ORM and MySQL (when using the InnoDB :ref:`storage engine
  282. <mysql-storage-engines>`) support database :ref:`savepoints
  283. <topics-db-transactions-savepoints>`, but this feature wasn't available in
  284. Django until version 1.4 when such supports was added.
  285. If you use the MyISAM storage engine please be aware of the fact that you will
  286. receive database-generated errors if you try to use the :ref:`savepoint-related
  287. methods of the transactions API <topics-db-transactions-savepoints>`. The reason
  288. for this is that detecting the storage engine of a MySQL database/table is an
  289. expensive operation so it was decided it isn't worth to dynamically convert
  290. these methods in no-op's based in the results of such detection.
  291. Notes on specific fields
  292. ------------------------
  293. Character fields
  294. ~~~~~~~~~~~~~~~~
  295. Any fields that are stored with ``VARCHAR`` column types have their
  296. ``max_length`` restricted to 255 characters if you are using ``unique=True``
  297. for the field. This affects :class:`~django.db.models.CharField`,
  298. :class:`~django.db.models.SlugField` and
  299. :class:`~django.db.models.CommaSeparatedIntegerField`.
  300. DateTime fields
  301. ~~~~~~~~~~~~~~~
  302. MySQL does not have a timezone-aware column type. If an attempt is made to
  303. store a timezone-aware ``time`` or ``datetime`` to a
  304. :class:`~django.db.models.TimeField` or :class:`~django.db.models.DateTimeField`
  305. respectively, a ``ValueError`` is raised rather than truncating data.
  306. MySQL does not store fractions of seconds. Fractions of seconds are truncated
  307. to zero when the time is stored.
  308. Row locking with ``QuerySet.select_for_update()``
  309. -------------------------------------------------
  310. MySQL does not support the ``NOWAIT`` option to the ``SELECT ... FOR UPDATE``
  311. statement. If ``select_for_update()`` is used with ``nowait=True`` then a
  312. ``DatabaseError`` will be raised.
  313. .. _sqlite-notes:
  314. SQLite notes
  315. ============
  316. SQLite_ provides an excellent development alternative for applications that
  317. are predominantly read-only or require a smaller installation footprint. As
  318. with all database servers, though, there are some differences that are
  319. specific to SQLite that you should be aware of.
  320. .. _SQLite: http://www.sqlite.org/
  321. .. _sqlite-string-matching:
  322. Substring matching and case sensitivity
  323. -----------------------------------------
  324. For all SQLite versions, there is some slightly counter-intuitive behavior when
  325. attempting to match some types of strings. These are triggered when using the
  326. :lookup:`iexact` or :lookup:`contains` filters in Querysets. The behavior
  327. splits into two cases:
  328. 1. For substring matching, all matches are done case-insensitively. That is a
  329. filter such as ``filter(name__contains="aa")`` will match a name of ``"Aabb"``.
  330. 2. For strings containing characters outside the ASCII range, all exact string
  331. matches are performed case-sensitively, even when the case-insensitive options
  332. are passed into the query. So the :lookup:`iexact` filter will behave exactly
  333. the same as the :lookup:`exact` filter in these cases.
  334. Some possible workarounds for this are `documented at sqlite.org`_, but they
  335. aren't utilised by the default SQLite backend in Django, as incorporating them
  336. would be fairly difficult to do robustly. Thus, Django exposes the default
  337. SQLite behavior and you should be aware of this when doing case-insensitive or
  338. substring filtering.
  339. .. _documented at sqlite.org: http://www.sqlite.org/faq.html#q18
  340. SQLite 3.3.6 or newer strongly recommended
  341. ------------------------------------------
  342. Versions of SQLite 3.3.5 and older contains the following bugs:
  343. * A bug when `handling`_ ``ORDER BY`` parameters. This can cause problems when
  344. you use the ``select`` parameter for the ``extra()`` QuerySet method. The bug
  345. can be identified by the error message ``OperationalError: ORDER BY terms
  346. must not be non-integer constants``.
  347. * A bug when handling `aggregation`_ together with DateFields and
  348. DecimalFields.
  349. .. _handling: http://www.sqlite.org/cvstrac/tktview?tn=1768
  350. .. _aggregation: https://code.djangoproject.com/ticket/10031
  351. SQLite 3.3.6 was released in April 2006, so most current binary distributions
  352. for different platforms include newer version of SQLite usable from Python
  353. through either the ``pysqlite2`` or the ``sqlite3`` modules.
  354. Version 3.5.9
  355. -------------
  356. The Ubuntu "Intrepid Ibex" (8.10) SQLite 3.5.9-3 package contains a bug that
  357. causes problems with the evaluation of query expressions. If you are using
  358. Ubuntu "Intrepid Ibex", you will need to update the package to version
  359. 3.5.9-3ubuntu1 or newer (recommended) or find an alternate source for SQLite
  360. packages, or install SQLite from source.
  361. At one time, Debian Lenny shipped with the same malfunctioning SQLite 3.5.9-3
  362. package. However the Debian project has subsequently issued updated versions
  363. of the SQLite package that correct these bugs. If you find you are getting
  364. unexpected results under Debian, ensure you have updated your SQLite package
  365. to 3.5.9-5 or later.
  366. The problem does not appear to exist with other versions of SQLite packaged
  367. with other operating systems.
  368. Version 3.6.2
  369. --------------
  370. SQLite version 3.6.2 (released August 30, 2008) introduced a bug into ``SELECT
  371. DISTINCT`` handling that is triggered by, amongst other things, Django's
  372. ``DateQuerySet`` (returned by the ``dates()`` method on a queryset).
  373. You should avoid using this version of SQLite with Django. Either upgrade to
  374. 3.6.3 (released September 22, 2008) or later, or downgrade to an earlier
  375. version of SQLite.
  376. .. _using-newer-versions-of-pysqlite:
  377. Using newer versions of the SQLite DB-API 2.0 driver
  378. ----------------------------------------------------
  379. For versions of Python 2.5 or newer that include ``sqlite3`` in the standard
  380. library Django will now use a ``pysqlite2`` interface in preference to
  381. ``sqlite3`` if it finds one is available.
  382. This provides the ability to upgrade both the DB-API 2.0 interface or SQLite 3
  383. itself to versions newer than the ones included with your particular Python
  384. binary distribution, if needed.
  385. "Database is locked" errors
  386. ---------------------------
  387. SQLite is meant to be a lightweight database, and thus can't support a high
  388. level of concurrency. ``OperationalError: database is locked`` errors indicate
  389. that your application is experiencing more concurrency than ``sqlite`` can
  390. handle in default configuration. This error means that one thread or process has
  391. an exclusive lock on the database connection and another thread timed out
  392. waiting for the lock the be released.
  393. Python's SQLite wrapper has
  394. a default timeout value that determines how long the second thread is allowed to
  395. wait on the lock before it times out and raises the ``OperationalError: database
  396. is locked`` error.
  397. If you're getting this error, you can solve it by:
  398. * Switching to another database backend. At a certain point SQLite becomes
  399. too "lite" for real-world applications, and these sorts of concurrency
  400. errors indicate you've reached that point.
  401. * Rewriting your code to reduce concurrency and ensure that database
  402. transactions are short-lived.
  403. * Increase the default timeout value by setting the ``timeout`` database
  404. option option::
  405. 'OPTIONS': {
  406. # ...
  407. 'timeout': 20,
  408. # ...
  409. }
  410. This will simply make SQLite wait a bit longer before throwing "database
  411. is locked" errors; it won't really do anything to solve them.
  412. ``QuerySet.select_for_update()`` not supported
  413. ----------------------------------------------
  414. SQLite does not support the ``SELECT ... FOR UPDATE`` syntax. Calling it will
  415. have no effect.
  416. .. _sqlite-connection-queries:
  417. Parameters not quoted in ``connection.queries``
  418. -----------------------------------------------
  419. ``sqlite3`` does not provide a way to retrieve the SQL after quoting and
  420. substituting the parameters. Instead, the SQL in ``connection.queries`` is
  421. rebuilt with a simple string interpolation. It may be incorrect. Make sure
  422. you add quotes where necessary before copying a query into a SQLite shell.
  423. .. _oracle-notes:
  424. Oracle notes
  425. ============
  426. Django supports `Oracle Database Server`_ versions 9i and
  427. higher. Oracle version 10g or later is required to use Django's
  428. ``regex`` and ``iregex`` query operators. You will also need at least
  429. version 4.3.1 of the `cx_Oracle`_ Python driver.
  430. Note that due to a Unicode-corruption bug in ``cx_Oracle`` 5.0, that
  431. version of the driver should **not** be used with Django;
  432. ``cx_Oracle`` 5.0.1 resolved this issue, so if you'd like to use a
  433. more recent ``cx_Oracle``, use version 5.0.1.
  434. ``cx_Oracle`` 5.0.1 or greater can optionally be compiled with the
  435. ``WITH_UNICODE`` environment variable. This is recommended but not
  436. required.
  437. .. _`Oracle Database Server`: http://www.oracle.com/
  438. .. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
  439. In order for the ``python manage.py syncdb`` command to work, your Oracle
  440. database user must have privileges to run the following commands:
  441. * CREATE TABLE
  442. * CREATE SEQUENCE
  443. * CREATE PROCEDURE
  444. * CREATE TRIGGER
  445. To run Django's test suite, the user needs these *additional* privileges:
  446. * CREATE USER
  447. * DROP USER
  448. * CREATE TABLESPACE
  449. * DROP TABLESPACE
  450. * CONNECT WITH ADMIN OPTION
  451. * RESOURCE WITH ADMIN OPTION
  452. Connecting to the database
  453. --------------------------
  454. Your Django settings.py file should look something like this for Oracle::
  455. DATABASES = {
  456. 'default': {
  457. 'ENGINE': 'django.db.backends.oracle',
  458. 'NAME': 'xe',
  459. 'USER': 'a_user',
  460. 'PASSWORD': 'a_password',
  461. 'HOST': '',
  462. 'PORT': '',
  463. }
  464. }
  465. If you don't use a ``tnsnames.ora`` file or a similar naming method that
  466. recognizes the SID ("xe" in this example), then fill in both
  467. :setting:`HOST` and :setting:`PORT` like so::
  468. DATABASES = {
  469. 'default': {
  470. 'ENGINE': 'django.db.backends.oracle',
  471. 'NAME': 'xe',
  472. 'USER': 'a_user',
  473. 'PASSWORD': 'a_password',
  474. 'HOST': 'dbprod01ned.mycompany.com',
  475. 'PORT': '1540',
  476. }
  477. }
  478. You should supply both :setting:`HOST` and :setting:`PORT`, or leave both
  479. as empty strings.
  480. Threaded option
  481. ----------------
  482. If you plan to run Django in a multithreaded environment (e.g. Apache in Windows
  483. using the default MPM module), then you **must** set the ``threaded`` option of
  484. your Oracle database configuration to True::
  485. 'OPTIONS': {
  486. 'threaded': True,
  487. },
  488. Failure to do this may result in crashes and other odd behavior.
  489. INSERT ... RETURNING INTO
  490. -------------------------
  491. By default, the Oracle backend uses a ``RETURNING INTO`` clause to efficiently
  492. retrieve the value of an ``AutoField`` when inserting new rows. This behavior
  493. may result in a ``DatabaseError`` in certain unusual setups, such as when
  494. inserting into a remote table, or into a view with an ``INSTEAD OF`` trigger.
  495. The ``RETURNING INTO`` clause can be disabled by setting the
  496. ``use_returning_into`` option of the database configuration to False::
  497. 'OPTIONS': {
  498. 'use_returning_into': False,
  499. },
  500. In this case, the Oracle backend will use a separate ``SELECT`` query to
  501. retrieve AutoField values.
  502. Naming issues
  503. -------------
  504. Oracle imposes a name length limit of 30 characters. To accommodate this, the
  505. backend truncates database identifiers to fit, replacing the final four
  506. characters of the truncated name with a repeatable MD5 hash value.
  507. When running syncdb, an ``ORA-06552`` error may be encountered if
  508. certain Oracle keywords are used as the name of a model field or the
  509. value of a ``db_column`` option. Django quotes all identifiers used
  510. in queries to prevent most such problems, but this error can still
  511. occur when an Oracle datatype is used as a column name. In
  512. particular, take care to avoid using the names ``date``,
  513. ``timestamp``, ``number`` or ``float`` as a field name.
  514. NULL and empty strings
  515. ----------------------
  516. Django generally prefers to use the empty string ('') rather than
  517. NULL, but Oracle treats both identically. To get around this, the
  518. Oracle backend ignores an explicit ``null`` option on fields that
  519. have the empty string as a possible value and generates DDL as if
  520. ``null=True``. When fetching from the database, it is assumed that
  521. a ``NULL`` value in one of these fields really means the empty
  522. string, and the data is silently converted to reflect this assumption.
  523. ``TextField`` limitations
  524. -------------------------
  525. The Oracle backend stores ``TextFields`` as ``NCLOB`` columns. Oracle imposes
  526. some limitations on the usage of such LOB columns in general:
  527. * LOB columns may not be used as primary keys.
  528. * LOB columns may not be used in indexes.
  529. * LOB columns may not be used in a ``SELECT DISTINCT`` list. This means that
  530. attempting to use the ``QuerySet.distinct`` method on a model that
  531. includes ``TextField`` columns will result in an error when run against
  532. Oracle. As a workaround, use the ``QuerySet.defer`` method in conjunction
  533. with ``distinct()`` to prevent ``TextField`` columns from being included in
  534. the ``SELECT DISTINCT`` list.
  535. .. _third-party-notes:
  536. Using a 3rd-party database backend
  537. ==================================
  538. In addition to the officially supported databases, there are backends provided
  539. by 3rd parties that allow you to use other databases with Django:
  540. * `Sybase SQL Anywhere`_
  541. * `IBM DB2`_
  542. * `Microsoft SQL Server 2005`_
  543. * Firebird_
  544. * ODBC_
  545. * ADSDB_
  546. The Django versions and ORM features supported by these unofficial backends
  547. vary considerably. Queries regarding the specific capabilities of these
  548. unofficial backends, along with any support queries, should be directed to
  549. the support channels provided by each 3rd party project.
  550. .. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/
  551. .. _IBM DB2: http://code.google.com/p/ibm-db/
  552. .. _Microsoft SQL Server 2005: http://code.google.com/p/django-mssql/
  553. .. _Firebird: http://code.google.com/p/django-firebird/
  554. .. _ODBC: http://code.google.com/p/django-pyodbc/
  555. .. _ADSDB: http://code.google.com/p/adsdb-django/