databases.txt 30 KB

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