databases.txt 37 KB

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