databases.txt 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  1. =========
  2. Databases
  3. =========
  4. Django officially supports the following databases:
  5. * :ref:`PostgreSQL <postgresql-notes>`
  6. * :ref:`MariaDB <mariadb-notes>`
  7. * :ref:`MySQL <mysql-notes>`
  8. * :ref:`Oracle <oracle-notes>`
  9. * :ref:`SQLite <sqlite-notes>`
  10. There are also a number of :ref:`database backends provided by third parties
  11. <third-party-notes>`.
  12. Django attempts to support as many features as possible on all database
  13. backends. However, not all database backends are alike, and we've had to make
  14. design decisions on which features to support and which assumptions we can make
  15. safely.
  16. This file describes some of the features that might be relevant to Django
  17. usage. It is not intended as a replacement for server-specific documentation or
  18. reference manuals.
  19. General notes
  20. =============
  21. .. _persistent-database-connections:
  22. Persistent connections
  23. ----------------------
  24. Persistent connections avoid the overhead of re-establishing a connection to
  25. the database in each request. They're controlled by the
  26. :setting:`CONN_MAX_AGE` parameter which defines the maximum lifetime of a
  27. connection. It can be set independently for each database.
  28. The default value is ``0``, preserving the historical behavior of closing the
  29. database connection at the end of each request. To enable persistent
  30. connections, set :setting:`CONN_MAX_AGE` to a positive integer of seconds. For
  31. unlimited persistent connections, set it to ``None``.
  32. Connection management
  33. ~~~~~~~~~~~~~~~~~~~~~
  34. Django opens a connection to the database when it first makes a database
  35. query. It keeps this connection open and reuses it in subsequent requests.
  36. Django closes the connection once it exceeds the maximum age defined by
  37. :setting:`CONN_MAX_AGE` or when it isn't usable any longer.
  38. In detail, Django automatically opens a connection to the database whenever it
  39. needs one and doesn't have one already — either because this is the first
  40. connection, or because the previous connection was closed.
  41. At the beginning of each request, Django closes the connection if it has
  42. reached its maximum age. If your database terminates idle connections after
  43. some time, you should set :setting:`CONN_MAX_AGE` to a lower value, so that
  44. Django doesn't attempt to use a connection that has been terminated by the
  45. database server. (This problem may only affect very low traffic sites.)
  46. At the end of each request, Django closes the connection if it has reached its
  47. maximum age or if it is in an unrecoverable error state. If any database
  48. errors have occurred while processing the requests, Django checks whether the
  49. connection still works, and closes it if it doesn't. Thus, database errors
  50. affect at most one request per each application's worker thread; if the
  51. connection becomes unusable, the next request gets a fresh connection.
  52. Setting :setting:`CONN_HEALTH_CHECKS` to ``True`` can be used to improve the
  53. robustness of connection reuse and prevent errors when a connection has been
  54. closed by the database server which is now ready to accept and serve new
  55. connections, e.g. after database server restart. The health check is performed
  56. only once per request and only if the database is being accessed during the
  57. handling of the request.
  58. .. versionchanged:: 4.1
  59. The :setting:`CONN_HEALTH_CHECKS` setting was added.
  60. Caveats
  61. ~~~~~~~
  62. Since each thread maintains its own connection, your database must support at
  63. least as many simultaneous connections as you have worker threads.
  64. Sometimes a database won't be accessed by the majority of your views, for
  65. example because it's the database of an external system, or thanks to caching.
  66. In such cases, you should set :setting:`CONN_MAX_AGE` to a low value or even
  67. ``0``, because it doesn't make sense to maintain a connection that's unlikely
  68. to be reused. This will help keep the number of simultaneous connections to
  69. this database small.
  70. The development server creates a new thread for each request it handles,
  71. negating the effect of persistent connections. Don't enable them during
  72. development.
  73. When Django establishes a connection to the database, it sets up appropriate
  74. parameters, depending on the backend being used. If you enable persistent
  75. connections, this setup is no longer repeated every request. If you modify
  76. parameters such as the connection's isolation level or time zone, you should
  77. either restore Django's defaults at the end of each request, force an
  78. appropriate value at the beginning of each request, or disable persistent
  79. connections.
  80. Encoding
  81. --------
  82. Django assumes that all databases use UTF-8 encoding. Using other encodings may
  83. result in unexpected behavior such as "value too long" errors from your
  84. database for data that is valid in Django. See the database specific notes
  85. below for information on how to set up your database correctly.
  86. .. _postgresql-notes:
  87. PostgreSQL notes
  88. ================
  89. Django supports PostgreSQL 10 and higher. `psycopg2`_ 2.5.4 or higher is
  90. required, though the latest release is recommended.
  91. .. _psycopg2: https://www.psycopg.org/
  92. .. _postgresql-connection-settings:
  93. PostgreSQL connection settings
  94. -------------------------------
  95. See :setting:`HOST` for details.
  96. To connect using a service name from the `connection service file`_ and a
  97. password from the `password file`_, you must specify them in the
  98. :setting:`OPTIONS` part of your database configuration in :setting:`DATABASES`:
  99. .. code-block:: python
  100. :caption: settings.py
  101. DATABASES = {
  102. 'default': {
  103. 'ENGINE': 'django.db.backends.postgresql',
  104. 'OPTIONS': {
  105. 'service': 'my_service',
  106. 'passfile': '.my_pgpass',
  107. },
  108. }
  109. }
  110. .. code-block:: text
  111. :caption: .pg_service.conf
  112. [my_service]
  113. host=localhost
  114. user=USER
  115. dbname=NAME
  116. port=5432
  117. .. code-block:: text
  118. :caption: .my_pgpass
  119. localhost:5432:NAME:USER:PASSWORD
  120. .. _connection service file: https://www.postgresql.org/docs/current/libpq-pgservice.html
  121. .. _password file: https://www.postgresql.org/docs/current/libpq-pgpass.html
  122. .. versionchanged:: 4.0
  123. Support for connecting by a service name, and specifying a password file
  124. was added.
  125. Optimizing PostgreSQL's configuration
  126. -------------------------------------
  127. Django needs the following parameters for its database connections:
  128. - ``client_encoding``: ``'UTF8'``,
  129. - ``default_transaction_isolation``: ``'read committed'`` by default,
  130. or the value set in the connection options (see below),
  131. - ``timezone``:
  132. - when :setting:`USE_TZ` is ``True``, ``'UTC'`` by default, or the
  133. :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` value set for the connection,
  134. - when :setting:`USE_TZ` is ``False``, the value of the global
  135. :setting:`TIME_ZONE` setting.
  136. If these parameters already have the correct values, Django won't set them for
  137. every new connection, which improves performance slightly. You can configure
  138. them directly in :file:`postgresql.conf` or more conveniently per database
  139. user with `ALTER ROLE`_.
  140. Django will work just fine without this optimization, but each new connection
  141. will do some additional queries to set these parameters.
  142. .. _ALTER ROLE: https://www.postgresql.org/docs/current/sql-alterrole.html
  143. .. _database-isolation-level:
  144. Isolation level
  145. ---------------
  146. Like PostgreSQL itself, Django defaults to the ``READ COMMITTED`` `isolation
  147. level`_. If you need a higher isolation level such as ``REPEATABLE READ`` or
  148. ``SERIALIZABLE``, set it in the :setting:`OPTIONS` part of your database
  149. configuration in :setting:`DATABASES`::
  150. import psycopg2.extensions
  151. DATABASES = {
  152. # ...
  153. 'OPTIONS': {
  154. 'isolation_level': psycopg2.extensions.ISOLATION_LEVEL_SERIALIZABLE,
  155. },
  156. }
  157. .. note::
  158. Under higher isolation levels, your application should be prepared to
  159. handle exceptions raised on serialization failures. This option is
  160. designed for advanced uses.
  161. .. _isolation level: https://www.postgresql.org/docs/current/transaction-iso.html
  162. Indexes for ``varchar`` and ``text`` columns
  163. --------------------------------------------
  164. When specifying ``db_index=True`` on your model fields, Django typically
  165. outputs a single ``CREATE INDEX`` statement. However, if the database type
  166. for the field is either ``varchar`` or ``text`` (e.g., used by ``CharField``,
  167. ``FileField``, and ``TextField``), then Django will create
  168. an additional index that uses an appropriate `PostgreSQL operator class`_
  169. for the column. The extra index is necessary to correctly perform
  170. lookups that use the ``LIKE`` operator in their SQL, as is done with the
  171. ``contains`` and ``startswith`` lookup types.
  172. .. _PostgreSQL operator class: https://www.postgresql.org/docs/current/indexes-opclass.html
  173. Migration operation for adding extensions
  174. -----------------------------------------
  175. If you need to add a PostgreSQL extension (like ``hstore``, ``postgis``, etc.)
  176. using a migration, use the
  177. :class:`~django.contrib.postgres.operations.CreateExtension` operation.
  178. .. _postgresql-server-side-cursors:
  179. Server-side cursors
  180. -------------------
  181. When using :meth:`QuerySet.iterator()
  182. <django.db.models.query.QuerySet.iterator>`, Django opens a :ref:`server-side
  183. cursor <psycopg2:server-side-cursors>`. By default, PostgreSQL assumes that
  184. only the first 10% of the results of cursor queries will be fetched. The query
  185. planner spends less time planning the query and starts returning results
  186. faster, but this could diminish performance if more than 10% of the results are
  187. retrieved. PostgreSQL's assumptions on the number of rows retrieved for a
  188. cursor query is controlled with the `cursor_tuple_fraction`_ option.
  189. .. _cursor_tuple_fraction: https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-CURSOR-TUPLE-FRACTION
  190. .. _transaction-pooling-server-side-cursors:
  191. Transaction pooling and server-side cursors
  192. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  193. Using a connection pooler in transaction pooling mode (e.g. `PgBouncer`_)
  194. requires disabling server-side cursors for that connection.
  195. Server-side cursors are local to a connection and remain open at the end of a
  196. transaction when :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>` is ``True``. A
  197. subsequent transaction may attempt to fetch more results from a server-side
  198. cursor. In transaction pooling mode, there's no guarantee that subsequent
  199. transactions will use the same connection. If a different connection is used,
  200. an error is raised when the transaction references the server-side cursor,
  201. because server-side cursors are only accessible in the connection in which they
  202. were created.
  203. One solution is to disable server-side cursors for a connection in
  204. :setting:`DATABASES` by setting :setting:`DISABLE_SERVER_SIDE_CURSORS
  205. <DATABASE-DISABLE_SERVER_SIDE_CURSORS>` to ``True``.
  206. To benefit from server-side cursors in transaction pooling mode, you could set
  207. up :doc:`another connection to the database </topics/db/multi-db>` in order to
  208. perform queries that use server-side cursors. This connection needs to either
  209. be directly to the database or to a connection pooler in session pooling mode.
  210. Another option is to wrap each ``QuerySet`` using server-side cursors in an
  211. :func:`~django.db.transaction.atomic` block, because it disables ``autocommit``
  212. for the duration of the transaction. This way, the server-side cursor will only
  213. live for the duration of the transaction.
  214. .. _PgBouncer: https://www.pgbouncer.org/
  215. .. _manually-specified-autoincrement-pk:
  216. Manually-specifying values of auto-incrementing primary keys
  217. ------------------------------------------------------------
  218. Django uses PostgreSQL's `SERIAL data type`_ to store auto-incrementing primary
  219. keys. A ``SERIAL`` column is populated with values from a `sequence`_ that
  220. keeps track of the next available value. Manually assigning a value to an
  221. auto-incrementing field doesn't update the field's sequence, which might later
  222. cause a conflict. For example::
  223. >>> from django.contrib.auth.models import User
  224. >>> User.objects.create(username='alice', pk=1)
  225. <User: alice>
  226. >>> # The sequence hasn't been updated; its next value is 1.
  227. >>> User.objects.create(username='bob')
  228. ...
  229. IntegrityError: duplicate key value violates unique constraint
  230. "auth_user_pkey" DETAIL: Key (id)=(1) already exists.
  231. If you need to specify such values, reset the sequence afterward to avoid
  232. reusing a value that's already in the table. The :djadmin:`sqlsequencereset`
  233. management command generates the SQL statements to do that.
  234. .. _SERIAL data type: https://www.postgresql.org/docs/current/datatype-numeric.html#DATATYPE-SERIAL
  235. .. _sequence: https://www.postgresql.org/docs/current/sql-createsequence.html
  236. Test database templates
  237. -----------------------
  238. You can use the :setting:`TEST['TEMPLATE'] <TEST_TEMPLATE>` setting to specify
  239. a `template`_ (e.g. ``'template0'``) from which to create a test database.
  240. .. _template: https://www.postgresql.org/docs/current/sql-createdatabase.html
  241. Speeding up test execution with non-durable settings
  242. ----------------------------------------------------
  243. You can speed up test execution times by `configuring PostgreSQL to be
  244. non-durable <https://www.postgresql.org/docs/current/non-durability.html>`_.
  245. .. warning::
  246. This is dangerous: it will make your database more susceptible to data loss
  247. or corruption in the case of a server crash or power loss. Only use this on
  248. a development machine where you can easily restore the entire contents of
  249. all databases in the cluster.
  250. .. _mariadb-notes:
  251. MariaDB notes
  252. =============
  253. Django supports MariaDB 10.3 and higher.
  254. To use MariaDB, use the MySQL backend, which is shared between the two. See the
  255. :ref:`MySQL notes <mysql-notes>` for more details.
  256. .. _mysql-notes:
  257. MySQL notes
  258. ===========
  259. Version support
  260. ---------------
  261. Django supports MySQL 5.7 and higher.
  262. Django's ``inspectdb`` feature uses the ``information_schema`` database, which
  263. contains detailed data on all database schemas.
  264. Django expects the database to support Unicode (UTF-8 encoding) and delegates to
  265. it the task of enforcing transactions and referential integrity. It is important
  266. to be aware of the fact that the two latter ones aren't actually enforced by
  267. MySQL when using the MyISAM storage engine, see the next section.
  268. .. _mysql-storage-engines:
  269. Storage engines
  270. ---------------
  271. MySQL has several `storage engines`_. You can change the default storage engine
  272. in the server configuration.
  273. MySQL's default storage engine is InnoDB_. This engine is fully transactional
  274. and supports foreign key references. It's the recommended choice. However, the
  275. InnoDB autoincrement counter is lost on a MySQL restart because it does not
  276. remember the ``AUTO_INCREMENT`` value, instead recreating it as "max(id)+1".
  277. This may result in an inadvertent reuse of :class:`~django.db.models.AutoField`
  278. values.
  279. The main drawbacks of MyISAM_ are that it doesn't support transactions or
  280. enforce foreign-key constraints.
  281. .. _storage engines: https://dev.mysql.com/doc/refman/en/storage-engines.html
  282. .. _MyISAM: https://dev.mysql.com/doc/refman/en/myisam-storage-engine.html
  283. .. _InnoDB: https://dev.mysql.com/doc/refman/en/innodb-storage-engine.html
  284. .. _mysql-db-api-drivers:
  285. MySQL DB API Drivers
  286. --------------------
  287. MySQL has a couple drivers that implement the Python Database API described in
  288. :pep:`249`:
  289. - `mysqlclient`_ is a native driver. It's **the recommended choice**.
  290. - `MySQL Connector/Python`_ is a pure Python driver from Oracle that does not
  291. require the MySQL client library or any Python modules outside the standard
  292. library.
  293. .. _mysqlclient: https://pypi.org/project/mysqlclient/
  294. .. _MySQL Connector/Python: https://dev.mysql.com/downloads/connector/python/
  295. These drivers are thread-safe and provide connection pooling.
  296. In addition to a DB API driver, Django needs an adapter to access the database
  297. drivers from its ORM. Django provides an adapter for mysqlclient while MySQL
  298. Connector/Python includes `its own`_.
  299. .. _its own: https://dev.mysql.com/doc/connector-python/en/connector-python-django-backend.html
  300. mysqlclient
  301. ~~~~~~~~~~~
  302. Django requires `mysqlclient`_ 1.4.0 or later.
  303. MySQL Connector/Python
  304. ~~~~~~~~~~~~~~~~~~~~~~
  305. MySQL Connector/Python is available from the `download page`_.
  306. The Django adapter is available in versions 1.1.X and later. It may not
  307. support the most recent releases of Django.
  308. .. _download page: https://dev.mysql.com/downloads/connector/python/
  309. .. _mysql-time-zone-definitions:
  310. Time zone definitions
  311. ---------------------
  312. If you plan on using Django's :doc:`timezone support </topics/i18n/timezones>`,
  313. use `mysql_tzinfo_to_sql`_ to load time zone tables into the MySQL database.
  314. This needs to be done just once for your MySQL server, not per database.
  315. .. _mysql_tzinfo_to_sql: https://dev.mysql.com/doc/refman/en/mysql-tzinfo-to-sql.html
  316. Creating your database
  317. ----------------------
  318. You can `create your database`_ using the command-line tools and this SQL::
  319. CREATE DATABASE <dbname> CHARACTER SET utf8;
  320. This ensures all tables and columns will use UTF-8 by default.
  321. .. _create your database: https://dev.mysql.com/doc/refman/en/create-database.html
  322. .. _mysql-collation:
  323. Collation settings
  324. ~~~~~~~~~~~~~~~~~~
  325. The collation setting for a column controls the order in which data is sorted
  326. as well as what strings compare as equal. You can specify the ``db_collation``
  327. parameter to set the collation name of the column for
  328. :attr:`CharField <django.db.models.CharField.db_collation>` and
  329. :attr:`TextField <django.db.models.TextField.db_collation>`.
  330. The collation can also be set on a database-wide level and per-table. This is
  331. `documented thoroughly`_ in the MySQL documentation. In such cases, you must
  332. set the collation by directly manipulating the database settings or tables.
  333. Django doesn't provide an API to change them.
  334. .. _documented thoroughly: https://dev.mysql.com/doc/refman/en/charset.html
  335. By default, with a UTF-8 database, MySQL will use the
  336. ``utf8_general_ci`` collation. This results in all string equality
  337. comparisons being done in a *case-insensitive* manner. That is, ``"Fred"`` and
  338. ``"freD"`` are considered equal at the database level. If you have a unique
  339. constraint on a field, it would be illegal to try to insert both ``"aa"`` and
  340. ``"AA"`` into the same column, since they compare as equal (and, hence,
  341. non-unique) with the default collation. If you want case-sensitive comparisons
  342. on a particular column or table, change the column or table to use the
  343. ``utf8_bin`` collation.
  344. Please note that according to `MySQL Unicode Character Sets`_, comparisons for
  345. the ``utf8_general_ci`` collation are faster, but slightly less correct, than
  346. comparisons for ``utf8_unicode_ci``. If this is acceptable for your application,
  347. you should use ``utf8_general_ci`` because it is faster. If this is not acceptable
  348. (for example, if you require German dictionary order), use ``utf8_unicode_ci``
  349. because it is more accurate.
  350. .. _MySQL Unicode Character Sets: https://dev.mysql.com/doc/refman/en/charset-unicode-sets.html
  351. .. warning::
  352. Model formsets validate unique fields in a case-sensitive manner. Thus when
  353. using a case-insensitive collation, a formset with unique field values that
  354. differ only by case will pass validation, but upon calling ``save()``, an
  355. ``IntegrityError`` will be raised.
  356. Connecting to the database
  357. --------------------------
  358. Refer to the :doc:`settings documentation </ref/settings>`.
  359. Connection settings are used in this order:
  360. #. :setting:`OPTIONS`.
  361. #. :setting:`NAME`, :setting:`USER`, :setting:`PASSWORD`, :setting:`HOST`,
  362. :setting:`PORT`
  363. #. MySQL option files.
  364. In other words, if you set the name of the database in :setting:`OPTIONS`,
  365. this will take precedence over :setting:`NAME`, which would override
  366. anything in a `MySQL option file`_.
  367. Here's a sample configuration which uses a MySQL option file::
  368. # settings.py
  369. DATABASES = {
  370. 'default': {
  371. 'ENGINE': 'django.db.backends.mysql',
  372. 'OPTIONS': {
  373. 'read_default_file': '/path/to/my.cnf',
  374. },
  375. }
  376. }
  377. # my.cnf
  378. [client]
  379. database = NAME
  380. user = USER
  381. password = PASSWORD
  382. default-character-set = utf8
  383. Several other `MySQLdb connection options`_ may be useful, such as ``ssl``,
  384. ``init_command``, and ``sql_mode``.
  385. .. _MySQL option file: https://dev.mysql.com/doc/refman/en/option-files.html
  386. .. _MySQLdb connection options: https://mysqlclient.readthedocs.io/user_guide.html#functions-and-attributes
  387. .. _mysql-sql-mode:
  388. Setting ``sql_mode``
  389. ~~~~~~~~~~~~~~~~~~~~
  390. From MySQL 5.7 onward, the default value of the ``sql_mode`` option contains
  391. ``STRICT_TRANS_TABLES``. That option escalates warnings into errors when data
  392. are truncated upon insertion, so Django highly recommends activating a
  393. `strict mode`_ for MySQL to prevent data loss (either ``STRICT_TRANS_TABLES``
  394. or ``STRICT_ALL_TABLES``).
  395. .. _strict mode: https://dev.mysql.com/doc/refman/en/sql-mode.html#sql-mode-strict
  396. If you need to customize the SQL mode, you can set the ``sql_mode`` variable
  397. like other MySQL options: either in a config file or with the entry
  398. ``'init_command': "SET sql_mode='STRICT_TRANS_TABLES'"`` in the
  399. :setting:`OPTIONS` part of your database configuration in :setting:`DATABASES`.
  400. .. _mysql-isolation-level:
  401. Isolation level
  402. ~~~~~~~~~~~~~~~
  403. When running concurrent loads, database transactions from different sessions
  404. (say, separate threads handling different requests) may interact with each
  405. other. These interactions are affected by each session's `transaction isolation
  406. level`_. You can set a connection's isolation level with an
  407. ``'isolation_level'`` entry in the :setting:`OPTIONS` part of your database
  408. configuration in :setting:`DATABASES`. Valid values for
  409. this entry are the four standard isolation levels:
  410. * ``'read uncommitted'``
  411. * ``'read committed'``
  412. * ``'repeatable read'``
  413. * ``'serializable'``
  414. or ``None`` to use the server's configured isolation level. However, Django
  415. works best with and defaults to read committed rather than MySQL's default,
  416. repeatable read. Data loss is possible with repeatable read. In particular,
  417. you may see cases where :meth:`~django.db.models.query.QuerySet.get_or_create`
  418. will raise an :exc:`~django.db.IntegrityError` but the object won't appear in
  419. a subsequent :meth:`~django.db.models.query.QuerySet.get` call.
  420. .. _transaction isolation level: https://dev.mysql.com/doc/refman/en/innodb-transaction-isolation-levels.html
  421. Creating your tables
  422. --------------------
  423. When Django generates the schema, it doesn't specify a storage engine, so
  424. tables will be created with whatever default storage engine your database
  425. server is configured for. The easiest solution is to set your database server's
  426. default storage engine to the desired engine.
  427. If you're using a hosting service and can't change your server's default
  428. storage engine, you have a couple of options.
  429. * After the tables are created, execute an ``ALTER TABLE`` statement to
  430. convert a table to a new storage engine (such as InnoDB)::
  431. ALTER TABLE <tablename> ENGINE=INNODB;
  432. This can be tedious if you have a lot of tables.
  433. * Another option is to use the ``init_command`` option for MySQLdb prior to
  434. creating your tables::
  435. 'OPTIONS': {
  436. 'init_command': 'SET default_storage_engine=INNODB',
  437. }
  438. This sets the default storage engine upon connecting to the database.
  439. After your tables have been created, you should remove this option as it
  440. adds a query that is only needed during table creation to each database
  441. connection.
  442. Table names
  443. -----------
  444. There are `known issues`_ in even the latest versions of MySQL that can cause the
  445. case of a table name to be altered when certain SQL statements are executed
  446. under certain conditions. It is recommended that you use lowercase table
  447. names, if possible, to avoid any problems that might arise from this behavior.
  448. Django uses lowercase table names when it auto-generates table names from
  449. models, so this is mainly a consideration if you are overriding the table name
  450. via the :class:`~django.db.models.Options.db_table` parameter.
  451. .. _known issues: https://bugs.mysql.com/bug.php?id=48875
  452. Savepoints
  453. ----------
  454. Both the Django ORM and MySQL (when using the InnoDB :ref:`storage engine
  455. <mysql-storage-engines>`) support database :ref:`savepoints
  456. <topics-db-transactions-savepoints>`.
  457. If you use the MyISAM storage engine please be aware of the fact that you will
  458. receive database-generated errors if you try to use the :ref:`savepoint-related
  459. methods of the transactions API <topics-db-transactions-savepoints>`. The reason
  460. for this is that detecting the storage engine of a MySQL database/table is an
  461. expensive operation so it was decided it isn't worth to dynamically convert
  462. these methods in no-op's based in the results of such detection.
  463. Notes on specific fields
  464. ------------------------
  465. .. _mysql-character-fields:
  466. Character fields
  467. ~~~~~~~~~~~~~~~~
  468. Any fields that are stored with ``VARCHAR`` column types may have their
  469. ``max_length`` restricted to 255 characters if you are using ``unique=True``
  470. for the field. This affects :class:`~django.db.models.CharField`,
  471. :class:`~django.db.models.SlugField`. See `the MySQL documentation`_ for more
  472. details.
  473. .. _the MySQL documentation: https://dev.mysql.com/doc/refman/en/create-index.html#create-index-column-prefixes
  474. ``TextField`` limitations
  475. ~~~~~~~~~~~~~~~~~~~~~~~~~
  476. MySQL can index only the first N chars of a ``BLOB`` or ``TEXT`` column. Since
  477. ``TextField`` doesn't have a defined length, you can't mark it as
  478. ``unique=True``. MySQL will report: "BLOB/TEXT column '<db_column>' used in key
  479. specification without a key length".
  480. .. _mysql-fractional-seconds:
  481. Fractional seconds support for Time and DateTime fields
  482. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  483. MySQL can store fractional seconds, provided that the column definition
  484. includes a fractional indication (e.g. ``DATETIME(6)``).
  485. Django will not upgrade existing columns to include fractional seconds if the
  486. database server supports it. If you want to enable them on an existing database,
  487. it's up to you to either manually update the column on the target database, by
  488. executing a command like::
  489. ALTER TABLE `your_table` MODIFY `your_datetime_column` DATETIME(6)
  490. or using a :class:`~django.db.migrations.operations.RunSQL` operation in a
  491. :ref:`data migration <data-migrations>`.
  492. ``TIMESTAMP`` columns
  493. ~~~~~~~~~~~~~~~~~~~~~
  494. If you are using a legacy database that contains ``TIMESTAMP`` columns, you must
  495. set :setting:`USE_TZ = False <USE_TZ>` to avoid data corruption.
  496. :djadmin:`inspectdb` maps these columns to
  497. :class:`~django.db.models.DateTimeField` and if you enable timezone support,
  498. both MySQL and Django will attempt to convert the values from UTC to local time.
  499. Row locking with ``QuerySet.select_for_update()``
  500. -------------------------------------------------
  501. MySQL and MariaDB do not support some options to the ``SELECT ... FOR UPDATE``
  502. statement. If ``select_for_update()`` is used with an unsupported option, then
  503. a :exc:`~django.db.NotSupportedError` is raised.
  504. =============== ========= ==========
  505. Option MariaDB MySQL
  506. =============== ========= ==========
  507. ``SKIP LOCKED`` X (≥10.6) X (≥8.0.1)
  508. ``NOWAIT`` X X (≥8.0.1)
  509. ``OF`` X (≥8.0.1)
  510. ``NO KEY``
  511. =============== ========= ==========
  512. When using ``select_for_update()`` on MySQL, make sure you filter a queryset
  513. against at least a set of fields contained in unique constraints or only
  514. against fields covered by indexes. Otherwise, an exclusive write lock will be
  515. acquired over the full table for the duration of the transaction.
  516. Automatic typecasting can cause unexpected results
  517. --------------------------------------------------
  518. When performing a query on a string type, but with an integer value, MySQL will
  519. coerce the types of all values in the table to an integer before performing the
  520. comparison. If your table contains the values ``'abc'``, ``'def'`` and you
  521. query for ``WHERE mycolumn=0``, both rows will match. Similarly, ``WHERE mycolumn=1``
  522. will match the value ``'abc1'``. Therefore, string type fields included in Django
  523. will always cast the value to a string before using it in a query.
  524. If you implement custom model fields that inherit from
  525. :class:`~django.db.models.Field` directly, are overriding
  526. :meth:`~django.db.models.Field.get_prep_value`, or use
  527. :class:`~django.db.models.expressions.RawSQL`,
  528. :meth:`~django.db.models.query.QuerySet.extra`, or
  529. :meth:`~django.db.models.Manager.raw`, you should ensure that you perform
  530. appropriate typecasting.
  531. .. _sqlite-notes:
  532. SQLite notes
  533. ============
  534. Django supports SQLite 3.9.0 and later.
  535. SQLite_ provides an excellent development alternative for applications that
  536. are predominantly read-only or require a smaller installation footprint. As
  537. with all database servers, though, there are some differences that are
  538. specific to SQLite that you should be aware of.
  539. .. _SQLite: https://www.sqlite.org/
  540. .. _sqlite-string-matching:
  541. Substring matching and case sensitivity
  542. ---------------------------------------
  543. For all SQLite versions, there is some slightly counter-intuitive behavior when
  544. attempting to match some types of strings. These are triggered when using the
  545. :lookup:`iexact` or :lookup:`contains` filters in Querysets. The behavior
  546. splits into two cases:
  547. 1. For substring matching, all matches are done case-insensitively. That is a
  548. filter such as ``filter(name__contains="aa")`` will match a name of ``"Aabb"``.
  549. 2. For strings containing characters outside the ASCII range, all exact string
  550. matches are performed case-sensitively, even when the case-insensitive options
  551. are passed into the query. So the :lookup:`iexact` filter will behave exactly
  552. the same as the :lookup:`exact` filter in these cases.
  553. Some possible workarounds for this are `documented at sqlite.org`_, but they
  554. aren't utilized by the default SQLite backend in Django, as incorporating them
  555. would be fairly difficult to do robustly. Thus, Django exposes the default
  556. SQLite behavior and you should be aware of this when doing case-insensitive or
  557. substring filtering.
  558. .. _documented at sqlite.org: https://www.sqlite.org/faq.html#q18
  559. .. _sqlite-decimal-handling:
  560. Decimal handling
  561. ----------------
  562. SQLite has no real decimal internal type. Decimal values are internally
  563. converted to the ``REAL`` data type (8-byte IEEE floating point number), as
  564. explained in the `SQLite datatypes documentation`__, so they don't support
  565. correctly-rounded decimal floating point arithmetic.
  566. __ https://www.sqlite.org/datatype3.html#storage_classes_and_datatypes
  567. "Database is locked" errors
  568. ---------------------------
  569. SQLite is meant to be a lightweight database, and thus can't support a high
  570. level of concurrency. ``OperationalError: database is locked`` errors indicate
  571. that your application is experiencing more concurrency than ``sqlite`` can
  572. handle in default configuration. This error means that one thread or process has
  573. an exclusive lock on the database connection and another thread timed out
  574. waiting for the lock the be released.
  575. Python's SQLite wrapper has
  576. a default timeout value that determines how long the second thread is allowed to
  577. wait on the lock before it times out and raises the ``OperationalError: database
  578. is locked`` error.
  579. If you're getting this error, you can solve it by:
  580. * Switching to another database backend. At a certain point SQLite becomes
  581. too "lite" for real-world applications, and these sorts of concurrency
  582. errors indicate you've reached that point.
  583. * Rewriting your code to reduce concurrency and ensure that database
  584. transactions are short-lived.
  585. * Increase the default timeout value by setting the ``timeout`` database
  586. option::
  587. 'OPTIONS': {
  588. # ...
  589. 'timeout': 20,
  590. # ...
  591. }
  592. This will make SQLite wait a bit longer before throwing "database is locked"
  593. errors; it won't really do anything to solve them.
  594. ``QuerySet.select_for_update()`` not supported
  595. ----------------------------------------------
  596. SQLite does not support the ``SELECT ... FOR UPDATE`` syntax. Calling it will
  597. have no effect.
  598. "pyformat" parameter style in raw queries not supported
  599. -------------------------------------------------------
  600. For most backends, raw queries (``Manager.raw()`` or ``cursor.execute()``)
  601. can use the "pyformat" parameter style, where placeholders in the query
  602. are given as ``'%(name)s'`` and the parameters are passed as a dictionary
  603. rather than a list. SQLite does not support this.
  604. .. _sqlite-isolation:
  605. Isolation when using ``QuerySet.iterator()``
  606. --------------------------------------------
  607. There are special considerations described in `Isolation In SQLite`_ when
  608. modifying a table while iterating over it using :meth:`.QuerySet.iterator`. If
  609. a row is added, changed, or deleted within the loop, then that row may or may
  610. not appear, or may appear twice, in subsequent results fetched from the
  611. iterator. Your code must handle this.
  612. .. _`Isolation in SQLite`: https://www.sqlite.org/isolation.html
  613. .. _sqlite-json1:
  614. Enabling JSON1 extension on SQLite
  615. ----------------------------------
  616. To use :class:`~django.db.models.JSONField` on SQLite, you need to enable the
  617. `JSON1 extension`_ on Python's :py:mod:`sqlite3` library. If the extension is
  618. not enabled on your installation, a system error (``fields.E180``) will be
  619. raised.
  620. To enable the JSON1 extension you can follow the instruction on
  621. `the wiki page`_.
  622. .. _JSON1 extension: https://www.sqlite.org/json1.html
  623. .. _the wiki page: https://code.djangoproject.com/wiki/JSON1Extension
  624. .. _oracle-notes:
  625. Oracle notes
  626. ============
  627. Django supports `Oracle Database Server`_ versions 19c and higher. Version 7.0
  628. or higher of the `cx_Oracle`_ Python driver is required.
  629. .. _`Oracle Database Server`: https://www.oracle.com/
  630. .. _`cx_Oracle`: https://oracle.github.io/python-cx_Oracle/
  631. In order for the ``python manage.py migrate`` command to work, your Oracle
  632. database user must have privileges to run the following commands:
  633. * CREATE TABLE
  634. * CREATE SEQUENCE
  635. * CREATE PROCEDURE
  636. * CREATE TRIGGER
  637. To run a project's test suite, the user usually needs these *additional*
  638. privileges:
  639. * CREATE USER
  640. * ALTER USER
  641. * DROP USER
  642. * CREATE TABLESPACE
  643. * DROP TABLESPACE
  644. * CREATE SESSION WITH ADMIN OPTION
  645. * CREATE TABLE WITH ADMIN OPTION
  646. * CREATE SEQUENCE WITH ADMIN OPTION
  647. * CREATE PROCEDURE WITH ADMIN OPTION
  648. * CREATE TRIGGER WITH ADMIN OPTION
  649. While the ``RESOURCE`` role has the required ``CREATE TABLE``,
  650. ``CREATE SEQUENCE``, ``CREATE PROCEDURE``, and ``CREATE TRIGGER`` privileges,
  651. and a user granted ``RESOURCE WITH ADMIN OPTION`` can grant ``RESOURCE``, such
  652. a user cannot grant the individual privileges (e.g. ``CREATE TABLE``), and thus
  653. ``RESOURCE WITH ADMIN OPTION`` is not usually sufficient for running tests.
  654. Some test suites also create views or materialized views; to run these, the
  655. user also needs ``CREATE VIEW WITH ADMIN OPTION`` and
  656. ``CREATE MATERIALIZED VIEW WITH ADMIN OPTION`` privileges. In particular, this
  657. is needed for Django's own test suite.
  658. All of these privileges are included in the DBA role, which is appropriate
  659. for use on a private developer's database.
  660. The Oracle database backend uses the ``SYS.DBMS_LOB`` and ``SYS.DBMS_RANDOM``
  661. packages, so your user will require execute permissions on it. It's normally
  662. accessible to all users by default, but in case it is not, you'll need to grant
  663. permissions like so:
  664. .. code-block:: sql
  665. GRANT EXECUTE ON SYS.DBMS_LOB TO user;
  666. GRANT EXECUTE ON SYS.DBMS_RANDOM TO user;
  667. Connecting to the database
  668. --------------------------
  669. To connect using the service name of your Oracle database, your ``settings.py``
  670. file should look something like this::
  671. DATABASES = {
  672. 'default': {
  673. 'ENGINE': 'django.db.backends.oracle',
  674. 'NAME': 'xe',
  675. 'USER': 'a_user',
  676. 'PASSWORD': 'a_password',
  677. 'HOST': '',
  678. 'PORT': '',
  679. }
  680. }
  681. In this case, you should leave both :setting:`HOST` and :setting:`PORT` empty.
  682. However, if you don't use a ``tnsnames.ora`` file or a similar naming method
  683. and want to connect using the SID ("xe" in this example), then fill in both
  684. :setting:`HOST` and :setting:`PORT` like so::
  685. DATABASES = {
  686. 'default': {
  687. 'ENGINE': 'django.db.backends.oracle',
  688. 'NAME': 'xe',
  689. 'USER': 'a_user',
  690. 'PASSWORD': 'a_password',
  691. 'HOST': 'dbprod01ned.mycompany.com',
  692. 'PORT': '1540',
  693. }
  694. }
  695. You should either supply both :setting:`HOST` and :setting:`PORT`, or leave
  696. both as empty strings. Django will use a different connect descriptor depending
  697. on that choice.
  698. Full DSN and Easy Connect
  699. ~~~~~~~~~~~~~~~~~~~~~~~~~
  700. A Full DSN or Easy Connect string can be used in :setting:`NAME` if both
  701. :setting:`HOST` and :setting:`PORT` are empty. This format is required when
  702. using RAC or pluggable databases without ``tnsnames.ora``, for example.
  703. Example of an Easy Connect string::
  704. 'NAME': 'localhost:1521/orclpdb1',
  705. Example of a full DSN string::
  706. 'NAME': (
  707. '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))'
  708. '(CONNECT_DATA=(SERVICE_NAME=orclpdb1)))'
  709. ),
  710. Threaded option
  711. ---------------
  712. If you plan to run Django in a multithreaded environment (e.g. Apache using the
  713. default MPM module on any modern operating system), then you **must** set
  714. the ``threaded`` option of your Oracle database configuration to ``True``::
  715. 'OPTIONS': {
  716. 'threaded': True,
  717. },
  718. Failure to do this may result in crashes and other odd behavior.
  719. INSERT ... RETURNING INTO
  720. -------------------------
  721. By default, the Oracle backend uses a ``RETURNING INTO`` clause to efficiently
  722. retrieve the value of an ``AutoField`` when inserting new rows. This behavior
  723. may result in a ``DatabaseError`` in certain unusual setups, such as when
  724. inserting into a remote table, or into a view with an ``INSTEAD OF`` trigger.
  725. The ``RETURNING INTO`` clause can be disabled by setting the
  726. ``use_returning_into`` option of the database configuration to ``False``::
  727. 'OPTIONS': {
  728. 'use_returning_into': False,
  729. },
  730. In this case, the Oracle backend will use a separate ``SELECT`` query to
  731. retrieve ``AutoField`` values.
  732. Naming issues
  733. -------------
  734. Oracle imposes a name length limit of 30 characters. To accommodate this, the
  735. backend truncates database identifiers to fit, replacing the final four
  736. characters of the truncated name with a repeatable MD5 hash value.
  737. Additionally, the backend turns database identifiers to all-uppercase.
  738. To prevent these transformations (this is usually required only when dealing
  739. with legacy databases or accessing tables which belong to other users), use
  740. a quoted name as the value for ``db_table``::
  741. class LegacyModel(models.Model):
  742. class Meta:
  743. db_table = '"name_left_in_lowercase"'
  744. class ForeignModel(models.Model):
  745. class Meta:
  746. db_table = '"OTHER_USER"."NAME_ONLY_SEEMS_OVER_30"'
  747. Quoted names can also be used with Django's other supported database
  748. backends; except for Oracle, however, the quotes have no effect.
  749. When running ``migrate``, an ``ORA-06552`` error may be encountered if
  750. certain Oracle keywords are used as the name of a model field or the
  751. value of a ``db_column`` option. Django quotes all identifiers used
  752. in queries to prevent most such problems, but this error can still
  753. occur when an Oracle datatype is used as a column name. In
  754. particular, take care to avoid using the names ``date``,
  755. ``timestamp``, ``number`` or ``float`` as a field name.
  756. .. _oracle-null-empty-strings:
  757. NULL and empty strings
  758. ----------------------
  759. Django generally prefers to use the empty string (``''``) rather than
  760. ``NULL``, but Oracle treats both identically. To get around this, the
  761. Oracle backend ignores an explicit ``null`` option on fields that
  762. have the empty string as a possible value and generates DDL as if
  763. ``null=True``. When fetching from the database, it is assumed that
  764. a ``NULL`` value in one of these fields really means the empty
  765. string, and the data is silently converted to reflect this assumption.
  766. ``TextField`` limitations
  767. -------------------------
  768. The Oracle backend stores ``TextFields`` as ``NCLOB`` columns. Oracle imposes
  769. some limitations on the usage of such LOB columns in general:
  770. * LOB columns may not be used as primary keys.
  771. * LOB columns may not be used in indexes.
  772. * LOB columns may not be used in a ``SELECT DISTINCT`` list. This means that
  773. attempting to use the ``QuerySet.distinct`` method on a model that
  774. includes ``TextField`` columns will result in an ``ORA-00932`` error when
  775. run against Oracle. As a workaround, use the ``QuerySet.defer`` method in
  776. conjunction with ``distinct()`` to prevent ``TextField`` columns from being
  777. included in the ``SELECT DISTINCT`` list.
  778. .. _subclassing-database-backends:
  779. Subclassing the built-in database backends
  780. ==========================================
  781. Django comes with built-in database backends. You may subclass an existing
  782. database backends to modify its behavior, features, or configuration.
  783. Consider, for example, that you need to change a single database feature.
  784. First, you have to create a new directory with a ``base`` module in it. For
  785. example::
  786. mysite/
  787. ...
  788. mydbengine/
  789. __init__.py
  790. base.py
  791. The ``base.py`` module must contain a class named ``DatabaseWrapper`` that
  792. subclasses an existing engine from the ``django.db.backends`` module. Here's an
  793. example of subclassing the PostgreSQL engine to change a feature class
  794. ``allows_group_by_selected_pks_on_model``:
  795. .. code-block:: python
  796. :caption: mysite/mydbengine/base.py
  797. from django.db.backends.postgresql import base, features
  798. class DatabaseFeatures(features.DatabaseFeatures):
  799. def allows_group_by_selected_pks_on_model(self, model):
  800. return True
  801. class DatabaseWrapper(base.DatabaseWrapper):
  802. features_class = DatabaseFeatures
  803. Finally, you must specify a :setting:`DATABASE-ENGINE` in your ``settings.py``
  804. file::
  805. DATABASES = {
  806. 'default': {
  807. 'ENGINE': 'mydbengine',
  808. ...
  809. },
  810. }
  811. You can see the current list of database engines by looking in
  812. :source:`django/db/backends`.
  813. .. _third-party-notes:
  814. Using a 3rd-party database backend
  815. ==================================
  816. In addition to the officially supported databases, there are backends provided
  817. by 3rd parties that allow you to use other databases with Django:
  818. * `CockroachDB`_
  819. * `Firebird`_
  820. * `Google Cloud Spanner`_
  821. * `Microsoft SQL Server`_
  822. The Django versions and ORM features supported by these unofficial backends
  823. vary considerably. Queries regarding the specific capabilities of these
  824. unofficial backends, along with any support queries, should be directed to
  825. the support channels provided by each 3rd party project.
  826. .. _CockroachDB: https://pypi.org/project/django-cockroachdb/
  827. .. _Firebird: https://pypi.org/project/django-firebird/
  828. .. _Google Cloud Spanner: https://pypi.org/project/django-google-spanner/
  829. .. _Microsoft SQL Server: https://pypi.org/project/django-mssql-backend/