databases.txt 41 KB

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