databases.txt 46 KB

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