databases.txt 37 KB

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