{"title":"Basisdata","version":"1.11","locale":"id","docname":"ref/databases","url":"/id/1.11/ref/databases/","canonical":"https://djangodocs.dev/id/1.11/ref/databases/","summary":"Django attempts to support as many features as possible on all database backends. However, not all database backends are alike, and we've had to make design…","html":"<h1>Basisdata<a class=\"heading-anchor\" href=\"#databases\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<p>Django attempts to support as many features as possible on all database\nbackends. However, not all database backends are alike, and we've had to make\ndesign decisions on which features to support and which assumptions we can make\nsafely.</p>\n<p>This file describes some of the features that might be relevant to Django\nusage. Of course, it is not intended as a replacement for server-specific\ndocumentation or reference manuals.</p>\n<section id=\"general-notes\">\n<h2>Catatan umum<a class=\"heading-anchor\" href=\"#general-notes\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<section id=\"persistent-connections\">\n<span id=\"persistent-database-connections\"></span><h3>Hubungan tetap<a class=\"heading-anchor\" href=\"#persistent-connections\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Persistent connections avoid the overhead of re-establishing a connection to\nthe database in each request. They're controlled by the\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-CONN_MAX_AGE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">CONN_MAX_AGE</span></code></a> parameter which defines the maximum lifetime of a\nconnection. It can be set independently for each database.</p>\n<p>The default value is <code class=\"docutils literal notranslate\"><span class=\"pre\">0</span></code>, preserving the historical behavior of closing the\ndatabase connection at the end of each request. To enable persistent\nconnections, set <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-CONN_MAX_AGE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">CONN_MAX_AGE</span></code></a> to a positive number of seconds. For\nunlimited persistent connections, set it to <code class=\"docutils literal notranslate\"><span class=\"pre\">None</span></code>.</p>\n<section id=\"connection-management\">\n<h4>Connection management<a class=\"heading-anchor\" href=\"#connection-management\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>Django opens a connection to the database when it first makes a database\nquery. It keeps this connection open and reuses it in subsequent requests.\nDjango closes the connection once it exceeds the maximum age defined by\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-CONN_MAX_AGE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">CONN_MAX_AGE</span></code></a> or when it isn't usable any longer.</p>\n<p>In detail, Django automatically opens a connection to the database whenever it\nneeds one and doesn't have one already — either because this is the first\nconnection, or because the previous connection was closed.</p>\n<p>At the beginning of each request, Django closes the connection if it has\nreached its maximum age. If your database terminates idle connections after\nsome time, you should set <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-CONN_MAX_AGE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">CONN_MAX_AGE</span></code></a> to a lower value, so that\nDjango doesn't attempt to use a connection that has been terminated by the\ndatabase server. (This problem may only affect very low traffic sites.)</p>\n<p>Pada akhir dari setiap permintaan, Django menutup hubungan jika itu telah mencapai umur maksimalnya atau jika itu dalam keadaan kesalahan yang tidak dapat ditutup. Jika kesalahan basisdata apapun telah muncul selagi mengolah permintaan, Django memeriksa apakah hubungan masih bekerja, dan menutup itu jika itu tidak. Dengan demikian, kesalahan basisdata mempengaruhi kebanyakan satu permintaan; jika hubungan menjadi tidak berguna, permintaan selanjutnya mendapatkan hubungan segar.</p>\n</section>\n<section id=\"caveats\">\n<h4>Peringatan<a class=\"heading-anchor\" href=\"#caveats\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>Since each thread maintains its own connection, your database must support at\nleast as many simultaneous connections as you have worker threads.</p>\n<p>Sometimes a database won't be accessed by the majority of your views, for\nexample because it's the database of an external system, or thanks to caching.\nIn such cases, you should set <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-CONN_MAX_AGE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">CONN_MAX_AGE</span></code></a> to a low value or even\n<code class=\"docutils literal notranslate\"><span class=\"pre\">0</span></code>, because it doesn't make sense to maintain a connection that's unlikely\nto be reused. This will help keep the number of simultaneous connections to\nthis database small.</p>\n<p>The development server creates a new thread for each request it handles,\nnegating the effect of persistent connections. Don't enable them during\ndevelopment.</p>\n<p>When Django establishes a connection to the database, it sets up appropriate\nparameters, depending on the backend being used. If you enable persistent\nconnections, this setup is no longer repeated every request. If you modify\nparameters such as the connection's isolation level or time zone, you should\neither restore Django's defaults at the end of each request, force an\nappropriate value at the beginning of each request, or disable persistent\nconnections.</p>\n</section>\n</section>\n<section id=\"encoding\">\n<h3>Encoding<a class=\"heading-anchor\" href=\"#encoding\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django assumes that all databases use UTF-8 encoding. Using other encodings may\nresult in unexpected behavior such as &quot;value too long&quot; errors from your\ndatabase for data that is valid in Django. See the database specific notes\nbelow for information on how to set up your database correctly.</p>\n</section>\n</section>\n<section id=\"postgresql-notes\">\n<span id=\"id1\"></span><h2>Catatan PostgreSQL<a class=\"heading-anchor\" href=\"#postgresql-notes\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django supports PostgreSQL 9.3 and higher. <a class=\"reference external\" href=\"http://initd.org/psycopg/\">psycopg2</a> 2.5.4 through 2.7.7 is\nrequired, though the 2.7.7 is recommended.</p>\n<section id=\"postgresql-connection-settings\">\n<h3>Pengaturan hubungan PostgreSQL<a class=\"heading-anchor\" href=\"#postgresql-connection-settings\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Lihat <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-HOST\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">HOST</span></code></a> untuk rincian.</p>\n</section>\n<section id=\"optimizing-postgresql-s-configuration\">\n<h3>Mengoptimalkan konfigurasi PostgreSQL<a class=\"heading-anchor\" href=\"#optimizing-postgresql-s-configuration\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django butuh parameter berikut untuk hubungan basisdatanya:</p>\n<ul class=\"simple\">\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">client_encoding</span></code>: <code class=\"docutils literal notranslate\"><span class=\"pre\">'UTF8'</span></code>,</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">default_transaction_isolation</span></code>: <code class=\"docutils literal notranslate\"><span class=\"pre\">'read</span> <span class=\"pre\">committed'</span></code> by default,\nor the value set in the connection options (see below),</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">timezone</span></code>: <code class=\"docutils literal notranslate\"><span class=\"pre\">'UTC'</span></code> when <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-USE_TZ\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">USE_TZ</span></code></a> is <code class=\"docutils literal notranslate\"><span class=\"pre\">True</span></code>, value of\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-TIME_ZONE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">TIME_ZONE</span></code></a> otherwise.</p></li>\n</ul>\n<p>If these parameters already have the correct values, Django won't set them for\nevery new connection, which improves performance slightly. You can configure\nthem directly in <code class=\"file docutils literal notranslate\"><span class=\"pre\">postgresql.conf</span></code> or more conveniently per database\nuser with <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/sql-alterrole.html\">ALTER ROLE</a>.</p>\n<p>Django will work just fine without this optimization, but each new connection\nwill do some additional queries to set these parameters.</p>\n</section>\n<section id=\"isolation-level\">\n<span id=\"database-isolation-level\"></span><h3>Isolation level<a class=\"heading-anchor\" href=\"#isolation-level\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Like PostgreSQL itself, Django defaults to the <code class=\"docutils literal notranslate\"><span class=\"pre\">READ</span> <span class=\"pre\">COMMITTED</span></code> <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/transaction-iso.html\">isolation\nlevel</a>. If you need a higher isolation level such as <code class=\"docutils literal notranslate\"><span class=\"pre\">REPEATABLE</span> <span class=\"pre\">READ</span></code> or\n<code class=\"docutils literal notranslate\"><span class=\"pre\">SERIALIZABLE</span></code>, set it in the <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-OPTIONS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">OPTIONS</span></code></a> part of your database\nconfiguration in <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASES\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DATABASES</span></code></a>:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"kn\">import</span><span class=\"w\"> </span><span class=\"nn\">psycopg2.extensions</span>\n\n<span class=\"n\">DATABASES</span> <span class=\"o\">=</span> <span class=\"p\">{</span>\n    <span class=\"c1\"># ...</span>\n    <span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n        <span class=\"s1\">&#39;isolation_level&#39;</span><span class=\"p\">:</span> <span class=\"n\">psycopg2</span><span class=\"o\">.</span><span class=\"n\">extensions</span><span class=\"o\">.</span><span class=\"n\">ISOLATION_LEVEL_SERIALIZABLE</span><span class=\"p\">,</span>\n    <span class=\"p\">},</span>\n<span class=\"p\">}</span>\n</code></pre></div>\n<aside class=\"admonition admonition-note\" role=\"note\">\n<p class=\"admonition-title\">Catatan</p>\n<p>Under higher isolation levels, your application should be prepared to\nhandle exceptions raised on serialization failures. This option is\ndesigned for advanced uses.</p>\n</aside>\n</section>\n<section id=\"indexes-for-varchar-and-text-columns\">\n<h3>Indeks untuk kolom <code class=\"docutils literal notranslate\"><span class=\"pre\">varchar</span></code> dan <code class=\"docutils literal notranslate\"><span class=\"pre\">text</span></code><a class=\"heading-anchor\" href=\"#indexes-for-varchar-and-text-columns\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>When specifying <code class=\"docutils literal notranslate\"><span class=\"pre\">db_index=True</span></code> on your model fields, Django typically\noutputs a single <code class=\"docutils literal notranslate\"><span class=\"pre\">CREATE</span> <span class=\"pre\">INDEX</span></code> statement.  However, if the database type\nfor the field is either <code class=\"docutils literal notranslate\"><span class=\"pre\">varchar</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">text</span></code> (e.g., used by <code class=\"docutils literal notranslate\"><span class=\"pre\">CharField</span></code>,\n<code class=\"docutils literal notranslate\"><span class=\"pre\">FileField</span></code>, and <code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code>), then Django will create\nan additional index that uses an appropriate <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/indexes-opclass.html\">PostgreSQL operator class</a>\nfor the column.  The extra index is necessary to correctly perform\nlookups that use the <code class=\"docutils literal notranslate\"><span class=\"pre\">LIKE</span></code> operator in their SQL, as is done with the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">contains</span></code> and <code class=\"docutils literal notranslate\"><span class=\"pre\">startswith</span></code> lookup types.</p>\n</section>\n<section id=\"migration-operation-for-adding-extensions\">\n<h3>Migration operation for adding extensions<a class=\"heading-anchor\" href=\"#migration-operation-for-adding-extensions\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>If you need to add a PostgreSQL extension (like <code class=\"docutils literal notranslate\"><span class=\"pre\">hstore</span></code>, <code class=\"docutils literal notranslate\"><span class=\"pre\">postgis</span></code>, etc.)\nusing a migration, use the\n<a class=\"reference internal\" href=\"/id/1.11/ref/contrib/postgres/operations/#django.contrib.postgres.operations.CreateExtension\" title=\"django.contrib.postgres.operations.CreateExtension\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">CreateExtension</span></code></a> operation.</p>\n</section>\n<section id=\"server-side-cursors\">\n<span id=\"postgresql-server-side-cursors\"></span><h3>Server-side cursors<a class=\"heading-anchor\" href=\"#server-side-cursors\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<aside class=\"version-note version-added\" data-version=\"1.11\">\n<p class=\"version-note-title\">New in Django 1.11</p></aside>\n<p>When using <a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#django.db.models.query.QuerySet.iterator\" title=\"django.db.models.query.QuerySet.iterator\"><code class=\"xref py py-meth docutils literal notranslate\"><span class=\"pre\">QuerySet.iterator()</span></code></a>, Django opens a <a class=\"reference external\" href=\"https://www.psycopg.org/docs/usage.html#server-side-cursors\" title=\"(di Psycopg v2.9)\"><span class=\"xref std std-ref\">server-side\ncursor</span></a>. By default, PostgreSQL assumes that\nonly the first 10% of the results of cursor queries will be fetched. The query\nplanner spends less time planning the query and starts returning results\nfaster, but this could diminish performance if more than 10% of the results are\nretrieved. PostgreSQL's assumptions on the number of rows retrieved for a\ncursor query is controlled with the <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/runtime-config-query.html#GUC-CURSOR-TUPLE-FRACTION\">cursor_tuple_fraction</a> option.</p>\n<section id=\"transaction-pooling-and-server-side-cursors\">\n<span id=\"transaction-pooling-server-side-cursors\"></span><h4>Transaction pooling and server-side cursors<a class=\"heading-anchor\" href=\"#transaction-pooling-and-server-side-cursors\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<aside class=\"version-note version-added\" data-version=\"1.11.1\">\n<p class=\"version-note-title\">New in Django 1.11.1</p></aside>\n<p>Using a connection pooler in transaction pooling mode (e.g. <a class=\"reference external\" href=\"https://pgbouncer.github.io/\">pgBouncer</a>)\nrequires disabling server-side cursors for that connection.</p>\n<p>Server-side cursors are local to a connection and remain open at the end of a\ntransaction when <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASE-AUTOCOMMIT\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">AUTOCOMMIT</span></code></a> is <code class=\"docutils literal notranslate\"><span class=\"pre\">True</span></code>. A\nsubsequent transaction may attempt to fetch more results from a server-side\ncursor. In transaction pooling mode, there's no guarantee that subsequent\ntransactions will use the same connection. If a different connection is used,\nan error is raised when the transaction references the server-side cursor,\nbecause server-side cursors are only accessible in the connection in which they\nwere created.</p>\n<p>One solution is to disable server-side cursors for a connection in\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASES\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DATABASES</span></code></a> by setting <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASE-DISABLE_SERVER_SIDE_CURSORS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DISABLE_SERVER_SIDE_CURSORS</span></code></a> to <code class=\"docutils literal notranslate\"><span class=\"pre\">True</span></code>.</p>\n<p>To benefit from server-side cursors in transaction pooling mode, you could set\nup <a class=\"reference internal\" href=\"/id/1.11/topics/db/multi-db/\"><span class=\"doc\">another connection to the database</span></a> in order to\nperform queries that use server-side cursors. This connection needs to either\nbe directly to the database or to a connection pooler in session pooling mode.</p>\n<p>Another option is to wrap each <code class=\"docutils literal notranslate\"><span class=\"pre\">QuerySet</span></code> using server-side cursors in an\n<a class=\"reference internal\" href=\"/id/1.11/topics/db/transactions/#django.db.transaction.atomic\" title=\"django.db.transaction.atomic\"><code class=\"xref py py-func docutils literal notranslate\"><span class=\"pre\">atomic()</span></code></a> block, because it disables <code class=\"docutils literal notranslate\"><span class=\"pre\">autocommit</span></code>\nfor the duration of the transaction. This way, the server-side cursor will only\nlive for the duration of the transaction.</p>\n</section>\n</section>\n<section id=\"manually-specifying-values-of-auto-incrementing-primary-keys\">\n<span id=\"manually-specified-autoincrement-pk\"></span><h3>Manually-specifying values of auto-incrementing primary keys<a class=\"heading-anchor\" href=\"#manually-specifying-values-of-auto-incrementing-primary-keys\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django uses PostgreSQL's <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/datatype-numeric.html#DATATYPE-SERIAL\">SERIAL data type</a> to store auto-incrementing primary\nkeys. A <code class=\"docutils literal notranslate\"><span class=\"pre\">SERIAL</span></code> column is populated with values from a <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/sql-createsequence.html\">sequence</a> that\nkeeps track of the next available value. Manually assigning a value to an\nauto-incrementing field doesn't update the field's sequence, which might later\ncause a conflict. For example:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"gp\">&gt;&gt;&gt; </span><span class=\"kn\">from</span><span class=\"w\"> </span><span class=\"nn\">django.contrib.auth.models</span><span class=\"w\"> </span><span class=\"kn\">import</span> <span class=\"n\">User</span>\n<span class=\"gp\">&gt;&gt;&gt; </span><span class=\"n\">User</span><span class=\"o\">.</span><span class=\"n\">objects</span><span class=\"o\">.</span><span class=\"n\">create</span><span class=\"p\">(</span><span class=\"n\">username</span><span class=\"o\">=</span><span class=\"s1\">&#39;alice&#39;</span><span class=\"p\">,</span> <span class=\"n\">pk</span><span class=\"o\">=</span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"go\">&lt;User: alice&gt;</span>\n<span class=\"gp\">&gt;&gt;&gt; </span><span class=\"c1\"># The sequence hasn&#39;t been updated; its next value is 1.</span>\n<span class=\"gp\">&gt;&gt;&gt; </span><span class=\"n\">User</span><span class=\"o\">.</span><span class=\"n\">objects</span><span class=\"o\">.</span><span class=\"n\">create</span><span class=\"p\">(</span><span class=\"n\">username</span><span class=\"o\">=</span><span class=\"s1\">&#39;bob&#39;</span><span class=\"p\">)</span>\n<span class=\"gp\">...</span>\n<span class=\"go\">IntegrityError: duplicate key value violates unique constraint</span>\n<span class=\"go\">&quot;auth_user_pkey&quot; DETAIL:  Key (id)=(1) already exists.</span>\n</code></pre></div>\n<p>If you need to specify such values, reset the sequence afterwards to avoid\nreusing a value that's already in the table. The <a class=\"reference internal\" href=\"/id/1.11/ref/django-admin/#django-admin-sqlsequencereset\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">sqlsequencereset</span></code></a>\nmanagement command generates the SQL statements to do that.</p>\n</section>\n<section id=\"test-database-templates\">\n<h3>Test database templates<a class=\"heading-anchor\" href=\"#test-database-templates\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<aside class=\"version-note version-added\" data-version=\"1.11\">\n<p class=\"version-note-title\">New in Django 1.11</p></aside>\n<p>You can use the <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-TEST_TEMPLATE\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">TEST['TEMPLATE']</span></code></a> setting to specify\na <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/sql-createdatabase.html\">template</a> (e.g. <code class=\"docutils literal notranslate\"><span class=\"pre\">'template0'</span></code>) from which to create a test database.</p>\n</section>\n<section id=\"speeding-up-test-execution-with-non-durable-settings\">\n<h3>Speeding up test execution with non-durable settings<a class=\"heading-anchor\" href=\"#speeding-up-test-execution-with-non-durable-settings\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>You can speed up test execution times by <a class=\"reference external\" href=\"https://www.postgresql.org/docs/current/static/non-durability.html\">configuring PostgreSQL to be\nnon-durable</a>.</p>\n<aside class=\"admonition admonition-warning\" role=\"note\">\n<p class=\"admonition-title\">Peringatan</p>\n<p>This is dangerous: it will make your database more susceptible to data loss\nor corruption in the case of a server crash or power loss. Only use this on\na development machine where you can easily restore the entire contents of\nall databases in the cluster.</p>\n</aside>\n</section>\n</section>\n<section id=\"mysql-notes\">\n<span id=\"id3\"></span><h2>Catatan MySQL<a class=\"heading-anchor\" href=\"#mysql-notes\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<section id=\"version-support\">\n<h3>Versi dukungan<a class=\"heading-anchor\" href=\"#version-support\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django supports MySQL 5.5.x - 5.7.x. MySQL 8 and later aren't supported.</p>\n<p>Django's <code class=\"docutils literal notranslate\"><span class=\"pre\">inspectdb</span></code> feature uses the <code class=\"docutils literal notranslate\"><span class=\"pre\">information_schema</span></code> database, which\ncontains detailed data on all database schemas.</p>\n<p>Django expects the database to support Unicode (UTF-8 encoding) and delegates to\nit the task of enforcing transactions and referential integrity. It is important\nto be aware of the fact that the two latter ones aren't actually enforced by\nMySQL when using the MyISAM storage engine, see the next section.</p>\n</section>\n<section id=\"storage-engines\">\n<span id=\"mysql-storage-engines\"></span><h3>Mesin penyimpanan<a class=\"heading-anchor\" href=\"#storage-engines\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>MySQL has several <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/storage-engines.html\">storage engines</a>. You can change the default storage engine\nin the server configuration.</p>\n<p>Until MySQL 5.5.4, the default engine was <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/myisam-storage-engine.html\">MyISAM</a> <a class=\"footnote-reference brackets\" href=\"#id6\" id=\"id4\" role=\"doc-noteref\"><span class=\"fn-bracket\">[</span>1<span class=\"fn-bracket\">]</span></a>. The main drawbacks of\nMyISAM are that it doesn't support transactions or enforce foreign-key\nconstraints. On the plus side, it was the only engine that supported full-text\nindexing and searching until MySQL 5.6.4.</p>\n<p>Since MySQL 5.5.5, the default storage engine is <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/innodb-storage-engine.html\">InnoDB</a>. This engine is fully\ntransactional and supports foreign key references. It's probably the best\nchoice at this point. However, note that the InnoDB autoincrement counter\nis lost on a MySQL restart because it does not remember the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">AUTO_INCREMENT</span></code> value, instead recreating it as &quot;max(id)+1&quot;. This may\nresult in an inadvertent reuse of <a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.AutoField\" title=\"django.db.models.AutoField\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">AutoField</span></code></a> values.</p>\n<p>If you upgrade an existing project to MySQL 5.5.5 and subsequently add some\ntables, ensure that your tables are using the same storage engine (i.e. MyISAM\nvs. InnoDB). Specifically, if tables that have a <code class=\"docutils literal notranslate\"><span class=\"pre\">ForeignKey</span></code> between them\nuse different storage engines, you may see an error like the following when\nrunning <code class=\"docutils literal notranslate\"><span class=\"pre\">migrate</span></code>:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">_mysql_exceptions</span><span class=\"o\">.</span><span class=\"n\">OperationalError</span><span class=\"p\">:</span> <span class=\"p\">(</span>\n    <span class=\"mi\">1005</span><span class=\"p\">,</span> <span class=\"s2\">&quot;Can&#39;t create table &#39;</span><span class=\"se\">\\\\</span><span class=\"s2\">db_name</span><span class=\"se\">\\\\</span><span class=\"s2\">.#sql-4a8_ab&#39; (errno: 150)&quot;</span>\n<span class=\"p\">)</span>\n</code></pre></div>\n<aside class=\"footnote-list brackets\">\n<aside class=\"footnote brackets\" id=\"id6\" role=\"doc-footnote\">\n<span class=\"label\"><span class=\"fn-bracket\">[</span><a role=\"doc-backlink\" href=\"#id4\">1</a><span class=\"fn-bracket\">]</span></span>\n<p>Unless this was changed by the packager of your MySQL package. We've\nhad reports that the Windows Community Server installer sets up InnoDB as\nthe default storage engine, for example.</p>\n</aside>\n</aside>\n</section>\n<section id=\"mysql-db-api-drivers\">\n<span id=\"id7\"></span><h3>MySQL DB API Drivers<a class=\"heading-anchor\" href=\"#mysql-db-api-drivers\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>The Python Database API is described in <span class=\"target\" id=\"index-0\"></span><a class=\"pep reference external\" href=\"https://peps.python.org/pep-0249/\"><strong>PEP 249</strong></a>. MySQL has three prominent\ndrivers that implement this API:</p>\n<ul class=\"simple\">\n<li><p><a class=\"reference external\" href=\"https://pypi.python.org/pypi/MySQL-python/1.2.4\">MySQLdb</a> is a native driver that has been developed and supported for over\na decade by Andy Dustman.</p></li>\n<li><p><a class=\"reference external\" href=\"https://pypi.python.org/pypi/mysqlclient\">mysqlclient</a> is a fork of <code class=\"docutils literal notranslate\"><span class=\"pre\">MySQLdb</span></code> which notably supports Python 3 and\ncan be used as a drop-in replacement for MySQLdb. At the time of this writing,\nthis is <strong>the recommended choice</strong> for using MySQL with Django.</p></li>\n<li><p><a class=\"reference external\" href=\"https://dev.mysql.com/downloads/connector/python\">MySQL Connector/Python</a> is a pure Python driver from Oracle that does not\nrequire the MySQL client library or any Python modules outside the standard\nlibrary.</p></li>\n</ul>\n<p>All these drivers are thread-safe and provide connection pooling. <code class=\"docutils literal notranslate\"><span class=\"pre\">MySQLdb</span></code>\nis the only one not supporting Python 3 currently.</p>\n<p>In addition to a DB API driver, Django needs an adapter to access the database\ndrivers from its ORM. Django provides an adapter for MySQLdb/mysqlclient while\nMySQL Connector/Python includes <a class=\"reference external\" href=\"https://dev.mysql.com/doc/connector-python/en/connector-python-django-backend.html\">its own</a>.</p>\n<section id=\"id8\">\n<h4>Basisdata MySQL<a class=\"heading-anchor\" href=\"#id8\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>Django requires MySQLdb version 1.2.3 or later.</p>\n<p>At the time of writing, the latest release of MySQLdb (1.2.5) doesn't support\nPython 3. In order to use MySQLdb under Python 3, you'll have to install\n<code class=\"docutils literal notranslate\"><span class=\"pre\">mysqlclient</span></code> instead.</p>\n<aside class=\"admonition admonition-note\" role=\"note\">\n<p class=\"admonition-title\">Catatan</p>\n<p>There are known issues with the way MySQLdb converts date strings into\ndatetime objects. Specifically, date strings with value <code class=\"docutils literal notranslate\"><span class=\"pre\">0000-00-00</span></code> are\nvalid for MySQL but will be converted into <code class=\"docutils literal notranslate\"><span class=\"pre\">None</span></code> by MySQLdb.</p>\n<p>This means you should be careful while using <a class=\"reference internal\" href=\"/id/1.11/ref/django-admin/#django-admin-loaddata\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">loaddata</span></code></a> and\n<a class=\"reference internal\" href=\"/id/1.11/ref/django-admin/#django-admin-dumpdata\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">dumpdata</span></code></a> with rows that may have <code class=\"docutils literal notranslate\"><span class=\"pre\">0000-00-00</span></code> values, as they\nwill be converted to <code class=\"docutils literal notranslate\"><span class=\"pre\">None</span></code>.</p>\n</aside>\n</section>\n<section id=\"id9\">\n<h4>mysqlclient<a class=\"heading-anchor\" href=\"#id9\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>Django supports <a class=\"reference external\" href=\"https://pypi.python.org/pypi/mysqlclient\">mysqlclient</a> 1.3.3 through 1.3.13.</p>\n</section>\n<section id=\"id10\">\n<h4>MySQL Connector/Python<a class=\"heading-anchor\" href=\"#id10\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>MySQL Connector/Python is available from the <a class=\"reference external\" href=\"https://dev.mysql.com/downloads/connector/python/\">download page</a>.\nThe Django adapter is available in versions 1.1.X and later. It may not\nsupport the most recent releases of Django.</p>\n</section>\n</section>\n<section id=\"time-zone-definitions\">\n<span id=\"mysql-time-zone-definitions\"></span><h3>Pengertian zona waktu<a class=\"heading-anchor\" href=\"#time-zone-definitions\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Jika anda berencana menggunakan dukungan <a class=\"reference internal\" href=\"/id/1.11/topics/i18n/timezones/\"><span class=\"doc\">timezone Django</span></a>, gunakan <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/mysql-tzinfo-to-sql.html\">mysql_tzinfo_to_sql</a> untuk memuat tabel zona waktu kedalam basisdata MySQL. Ini harus dilakukan hanya sekali untuk peladen MySQL anda, bukan per basisdata.</p>\n</section>\n<section id=\"creating-your-database\">\n<h3>Membuat basisdata anda<a class=\"heading-anchor\" href=\"#creating-your-database\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Anda dapat <a class=\"reference internal\" href=\"#creating-your-database\">membuat basisdata anda</a> menggunakan alat baris-perintah dan SQL ini:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">CREATE</span> <span class=\"n\">DATABASE</span> <span class=\"o\">&lt;</span><span class=\"n\">dbname</span><span class=\"o\">&gt;</span> <span class=\"n\">CHARACTER</span> <span class=\"n\">SET</span> <span class=\"n\">utf8</span><span class=\"p\">;</span>\n</code></pre></div>\n<p>Ini memastikan semua tabel dan kolom akan menggunakan UTF-8 secara awal.</p>\n<section id=\"collation-settings\">\n<span id=\"mysql-collation\"></span><h4>Pengaturan pemeriksaan<a class=\"heading-anchor\" href=\"#collation-settings\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>The collation setting for a column controls the order in which data is sorted\nas well as what strings compare as equal. It can be set on a database-wide\nlevel and also per-table and per-column. This is <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/charset.html\">documented thoroughly</a> in\nthe MySQL documentation. In all cases, you set the collation by directly\nmanipulating the database tables; Django doesn't provide a way to set this on\nthe model definition.</p>\n<p>By default, with a UTF-8 database, MySQL will use the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_general_ci</span></code> collation. This results in all string equality\ncomparisons being done in a <em>case-insensitive</em> manner. That is, <code class=\"docutils literal notranslate\"><span class=\"pre\">&quot;Fred&quot;</span></code> and\n<code class=\"docutils literal notranslate\"><span class=\"pre\">&quot;freD&quot;</span></code> are considered equal at the database level. If you have a unique\nconstraint on a field, it would be illegal to try to insert both <code class=\"docutils literal notranslate\"><span class=\"pre\">&quot;aa&quot;</span></code> and\n<code class=\"docutils literal notranslate\"><span class=\"pre\">&quot;AA&quot;</span></code> into the same column, since they compare as equal (and, hence,\nnon-unique) with the default collation. If you want case-sensitive comparisons\non a particular column or table, change the column or table to use the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_bin</span></code> collation.</p>\n<p>Please note that according to <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/charset-unicode-sets.html\">MySQL Unicode Character Sets</a>, comparisons for\nthe <code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_general_ci</span></code> collation are faster, but slightly less correct, than\ncomparisons for <code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_unicode_ci</span></code>. If this is acceptable for your application,\nyou should use <code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_general_ci</span></code> because it is faster. If this is not acceptable\n(for example, if you require German dictionary order), use <code class=\"docutils literal notranslate\"><span class=\"pre\">utf8_unicode_ci</span></code>\nbecause it is more accurate.</p>\n<aside class=\"admonition admonition-warning\" role=\"note\">\n<p class=\"admonition-title\">Peringatan</p>\n<p>Model formsets validate unique fields in a case-sensitive manner. Thus when\nusing a case-insensitive collation, a formset with unique field values that\ndiffer only by case will pass validation, but upon calling <code class=\"docutils literal notranslate\"><span class=\"pre\">save()</span></code>, an\n<code class=\"docutils literal notranslate\"><span class=\"pre\">IntegrityError</span></code> will be raised.</p>\n</aside>\n</section>\n</section>\n<section id=\"connecting-to-the-database\">\n<h3>Menyambung ke basisdata<a class=\"heading-anchor\" href=\"#connecting-to-the-database\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Mengacu ke <a class=\"reference internal\" href=\"/id/1.11/ref/settings/\"><span class=\"doc\">pengaturan dokumentasi</span></a>.</p>\n<p>Connection settings are used in this order:</p>\n<ol class=\"arabic simple\">\n<li><p><a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-OPTIONS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">OPTIONS</span></code></a>.</p></li>\n<li><p><a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-NAME\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">NAME</span></code></a>, <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-USER\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">USER</span></code></a>, <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-PASSWORD\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">PASSWORD</span></code></a>,\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-HOST\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">HOST</span></code></a>, <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-PORT\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">PORT</span></code></a></p></li>\n<li><p>Berkas pilihan MySQL.</p></li>\n</ol>\n<p>In other words, if you set the name of the database in <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-OPTIONS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">OPTIONS</span></code></a>,\nthis will take precedence over <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-NAME\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">NAME</span></code></a>, which would override\nanything in a <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/option-files.html\">MySQL option file</a>.</p>\n<p>Here's a sample configuration which uses a MySQL option file:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"c1\"># settings.py</span>\n<span class=\"n\">DATABASES</span> <span class=\"o\">=</span> <span class=\"p\">{</span>\n    <span class=\"s1\">&#39;default&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n        <span class=\"s1\">&#39;ENGINE&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;django.db.backends.mysql&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n            <span class=\"s1\">&#39;read_default_file&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;/path/to/my.cnf&#39;</span><span class=\"p\">,</span>\n        <span class=\"p\">},</span>\n    <span class=\"p\">}</span>\n<span class=\"p\">}</span>\n\n\n<span class=\"c1\"># my.cnf</span>\n<span class=\"p\">[</span><span class=\"n\">client</span><span class=\"p\">]</span>\n<span class=\"n\">database</span> <span class=\"o\">=</span> <span class=\"n\">NAME</span>\n<span class=\"n\">user</span> <span class=\"o\">=</span> <span class=\"n\">USER</span>\n<span class=\"n\">password</span> <span class=\"o\">=</span> <span class=\"n\">PASSWORD</span>\n<span class=\"n\">default</span><span class=\"o\">-</span><span class=\"n\">character</span><span class=\"o\">-</span><span class=\"nb\">set</span> <span class=\"o\">=</span> <span class=\"n\">utf8</span>\n</code></pre></div>\n<p>Several other <a class=\"reference external\" href=\"https://mysqlclient.readthedocs.io/user_guide.html#functions-and-attributes\">MySQLdb connection options</a> may be useful, such as <code class=\"docutils literal notranslate\"><span class=\"pre\">ssl</span></code>,\n<code class=\"docutils literal notranslate\"><span class=\"pre\">init_command</span></code>, and <code class=\"docutils literal notranslate\"><span class=\"pre\">sql_mode</span></code>.</p>\n<section id=\"setting-sql-mode\">\n<span id=\"mysql-sql-mode\"></span><h4>Mengatur <code class=\"docutils literal notranslate\"><span class=\"pre\">sql_mode</span></code><a class=\"heading-anchor\" href=\"#setting-sql-mode\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>From MySQL 5.7 onwards and on fresh installs of MySQL 5.6, the default value of\nthe <code class=\"docutils literal notranslate\"><span class=\"pre\">sql_mode</span></code> option contains <code class=\"docutils literal notranslate\"><span class=\"pre\">STRICT_TRANS_TABLES</span></code>. That option escalates\nwarnings into errors when data are truncated upon insertion, so Django highly\nrecommends activating a <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/sql-mode.html#sql-mode-strict\">strict mode</a> for MySQL to prevent data loss (either\n<code class=\"docutils literal notranslate\"><span class=\"pre\">STRICT_TRANS_TABLES</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">STRICT_ALL_TABLES</span></code>).</p>\n<p>If you need to customize the SQL mode, you can set the <code class=\"docutils literal notranslate\"><span class=\"pre\">sql_mode</span></code> variable\nlike other MySQL options: either in a config file or with the entry\n<code class=\"docutils literal notranslate\"><span class=\"pre\">'init_command':</span> <span class=\"pre\">&quot;SET</span> <span class=\"pre\">sql_mode='STRICT_TRANS_TABLES'&quot;</span></code> in the\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-OPTIONS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">OPTIONS</span></code></a> part of your database configuration in <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASES\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DATABASES</span></code></a>.</p>\n</section>\n<section id=\"mysql-isolation-level\">\n<span id=\"id11\"></span><h4>Isolation level<a class=\"heading-anchor\" href=\"#mysql-isolation-level\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<aside class=\"version-note version-added\" data-version=\"1.11\">\n<p class=\"version-note-title\">New in Django 1.11</p></aside>\n<p>When running concurrent loads, database transactions from different sessions\n(say, separate threads handling different requests) may interact with each\nother. These interactions are affected by each session's <a class=\"reference external\" href=\"https://dev.mysql.com/doc/refman/en/innodb-transaction-isolation-levels.html\">transaction isolation\nlevel</a>. You can set a connection's isolation level with an\n<code class=\"docutils literal notranslate\"><span class=\"pre\">'isolation_level'</span></code> entry in the <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-OPTIONS\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">OPTIONS</span></code></a> part of your database\nconfiguration in <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-DATABASES\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">DATABASES</span></code></a>. Valid values for\nthis entry are the four standard isolation levels:</p>\n<ul class=\"simple\">\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">'read</span> <span class=\"pre\">uncommitted'</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">'read</span> <span class=\"pre\">committed'</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">'repeatable</span> <span class=\"pre\">read'</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">'serializable'</span></code></p></li>\n</ul>\n<p>or <code class=\"docutils literal notranslate\"><span class=\"pre\">None</span></code> to use the server's configured isolation level. However, Django\nworks best with read committed rather than MySQL's default, repeatable read.\nData loss is possible with repeatable read.</p>\n</section>\n</section>\n<section id=\"creating-your-tables\">\n<h3>Membuat tabel anda<a class=\"heading-anchor\" href=\"#creating-your-tables\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>When Django generates the schema, it doesn't specify a storage engine, so\ntables will be created with whatever default storage engine your database\nserver is configured for. The easiest solution is to set your database server's\ndefault storage engine to the desired engine.</p>\n<p>If you're using a hosting service and can't change your server's default\nstorage engine, you have a couple of options.</p>\n<ul>\n<li><p>After the tables are created, execute an <code class=\"docutils literal notranslate\"><span class=\"pre\">ALTER</span> <span class=\"pre\">TABLE</span></code> statement to\nconvert a table to a new storage engine (such as InnoDB):</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">ALTER</span> <span class=\"n\">TABLE</span> <span class=\"o\">&lt;</span><span class=\"n\">tablename</span><span class=\"o\">&gt;</span> <span class=\"n\">ENGINE</span><span class=\"o\">=</span><span class=\"n\">INNODB</span><span class=\"p\">;</span>\n</code></pre></div>\n<p>This can be tedious if you have a lot of tables.</p>\n</li>\n<li><p>Another option is to use the <code class=\"docutils literal notranslate\"><span class=\"pre\">init_command</span></code> option for MySQLdb prior to\ncreating your tables:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n   <span class=\"s1\">&#39;init_command&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;SET default_storage_engine=INNODB&#39;</span><span class=\"p\">,</span>\n<span class=\"p\">}</span>\n</code></pre></div>\n<p>This sets the default storage engine upon connecting to the database.\nAfter your tables have been created, you should remove this option as it\nadds a query that is only needed during table creation to each database\nconnection.</p>\n</li>\n</ul>\n</section>\n<section id=\"table-names\">\n<h3>Nama tabel<a class=\"heading-anchor\" href=\"#table-names\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>There are <a class=\"reference external\" href=\"https://bugs.mysql.com/bug.php?id=48875\">known issues</a> in even the latest versions of MySQL that can cause the\ncase of a table name to be altered when certain SQL statements are executed\nunder certain conditions. It is recommended that you use lowercase table\nnames, if possible, to avoid any problems that might arise from this behavior.\nDjango uses lowercase table names when it auto-generates table names from\nmodels, so this is mainly a consideration if you are overriding the table name\nvia the <a class=\"reference internal\" href=\"/id/1.11/ref/models/options/#django.db.models.Options.db_table\" title=\"django.db.models.Options.db_table\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">db_table</span></code></a> parameter.</p>\n</section>\n<section id=\"savepoints\">\n<h3>Savepoint<a class=\"heading-anchor\" href=\"#savepoints\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Both the Django ORM and MySQL (when using the InnoDB <a class=\"reference internal\" href=\"#mysql-storage-engines\"><span class=\"std std-ref\">storage engine</span></a>) support database <a class=\"reference internal\" href=\"/id/1.11/topics/db/transactions/#topics-db-transactions-savepoints\"><span class=\"std std-ref\">savepoints</span></a>.</p>\n<p>If you use the MyISAM storage engine please be aware of the fact that you will\nreceive database-generated errors if you try to use the <a class=\"reference internal\" href=\"/id/1.11/topics/db/transactions/#topics-db-transactions-savepoints\"><span class=\"std std-ref\">savepoint-related\nmethods of the transactions API</span></a>. The reason\nfor this is that detecting the storage engine of a MySQL database/table is an\nexpensive operation so it was decided it isn't worth to dynamically convert\nthese methods in no-op's based in the results of such detection.</p>\n</section>\n<section id=\"notes-on-specific-fields\">\n<h3>Notes on specific fields<a class=\"heading-anchor\" href=\"#notes-on-specific-fields\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<section id=\"character-fields\">\n<h4>Character fields<a class=\"heading-anchor\" href=\"#character-fields\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>Any fields that are stored with <code class=\"docutils literal notranslate\"><span class=\"pre\">VARCHAR</span></code> column types have their\n<code class=\"docutils literal notranslate\"><span class=\"pre\">max_length</span></code> restricted to 255 characters if you are using <code class=\"docutils literal notranslate\"><span class=\"pre\">unique=True</span></code>\nfor the field. This affects <a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.CharField\" title=\"django.db.models.CharField\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">CharField</span></code></a>,\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.SlugField\" title=\"django.db.models.SlugField\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">SlugField</span></code></a> and\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.CommaSeparatedIntegerField\" title=\"django.db.models.CommaSeparatedIntegerField\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">CommaSeparatedIntegerField</span></code></a>.</p>\n</section>\n<section id=\"textfield-limitations\">\n<h4>Batasan <code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code><a class=\"heading-anchor\" href=\"#textfield-limitations\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>MySQL can index only the first N chars of a <code class=\"docutils literal notranslate\"><span class=\"pre\">BLOB</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">TEXT</span></code> column. Since\n<code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code> doesn't have a defined length, you can't mark it as\n<code class=\"docutils literal notranslate\"><span class=\"pre\">unique=True</span></code>. MySQL will report: &quot;BLOB/TEXT column '&lt;db_column&gt;' used in key\nspecification without a key length&quot;.</p>\n</section>\n<section id=\"fractional-seconds-support-for-time-and-datetime-fields\">\n<span id=\"mysql-fractional-seconds\"></span><h4>Fractional seconds support for Time and DateTime fields<a class=\"heading-anchor\" href=\"#fractional-seconds-support-for-time-and-datetime-fields\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>MySQL 5.6.4 and later can store fractional seconds, provided that the\ncolumn definition includes a fractional indication (e.g. <code class=\"docutils literal notranslate\"><span class=\"pre\">DATETIME(6)</span></code>).\nEarlier versions do not support them at all. In addition, versions of MySQLdb\nolder than 1.2.5 have <a class=\"reference external\" href=\"https://github.com/farcepest/MySQLdb1/issues/24\">a bug</a> that also prevents the use of fractional seconds\nwith MySQL.</p>\n<p>Django will not upgrade existing columns to include fractional seconds if the\ndatabase server supports it. If you want to enable them on an existing database,\nit's up to you to either manually update the column on the target database, by\nexecuting a command like:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code>ALTER TABLE `your_table` MODIFY `your_datetime_column` DATETIME(6)\n</code></pre></div>\n<p>or using a <a class=\"reference internal\" href=\"/id/1.11/ref/migration-operations/#django.db.migrations.operations.RunSQL\" title=\"django.db.migrations.operations.RunSQL\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">RunSQL</span></code></a> operation in a\n<a class=\"reference internal\" href=\"/id/1.11/topics/migrations/#data-migrations\"><span class=\"std std-ref\">data migration</span></a>.</p>\n</section>\n<section id=\"timestamp-columns\">\n<h4>Kolom <code class=\"docutils literal notranslate\"><span class=\"pre\">TIMESTAMP</span></code><a class=\"heading-anchor\" href=\"#timestamp-columns\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h4>\n<p>If you are using a legacy database that contains <code class=\"docutils literal notranslate\"><span class=\"pre\">TIMESTAMP</span></code> columns, you must\nset <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-USE_TZ\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">USE_TZ</span> <span class=\"pre\">=</span> <span class=\"pre\">False</span></code></a> to avoid data corruption.\n<a class=\"reference internal\" href=\"/id/1.11/ref/django-admin/#django-admin-inspectdb\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">inspectdb</span></code></a> maps these columns to\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.DateTimeField\" title=\"django.db.models.DateTimeField\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">DateTimeField</span></code></a> and if you enable timezone support,\nboth MySQL and Django will attempt to convert the values from UTC to local time.</p>\n</section>\n</section>\n<section id=\"row-locking-with-queryset-select-for-update\">\n<h3>Row locking with <code class=\"docutils literal notranslate\"><span class=\"pre\">QuerySet.select_for_update()</span></code><a class=\"heading-anchor\" href=\"#row-locking-with-queryset-select-for-update\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>MySQL does not support the <code class=\"docutils literal notranslate\"><span class=\"pre\">NOWAIT</span></code> and <code class=\"docutils literal notranslate\"><span class=\"pre\">SKIP</span> <span class=\"pre\">LOCKED</span></code> options to the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span> <span class=\"pre\">...</span> <span class=\"pre\">FOR</span> <span class=\"pre\">UPDATE</span></code> statement. If <code class=\"docutils literal notranslate\"><span class=\"pre\">select_for_update()</span></code> is used with\n<code class=\"docutils literal notranslate\"><span class=\"pre\">nowait=True</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">skip_locked=True</span></code> then a <code class=\"docutils literal notranslate\"><span class=\"pre\">DatabaseError</span></code> will be raised.</p>\n</section>\n<section id=\"automatic-typecasting-can-cause-unexpected-results\">\n<h3>Automatic typecasting can cause unexpected results<a class=\"heading-anchor\" href=\"#automatic-typecasting-can-cause-unexpected-results\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>When performing a query on a string type, but with an integer value, MySQL will\ncoerce the types of all values in the table to an integer before performing the\ncomparison. If your table contains the values <code class=\"docutils literal notranslate\"><span class=\"pre\">'abc'</span></code>, <code class=\"docutils literal notranslate\"><span class=\"pre\">'def'</span></code> and you\nquery for <code class=\"docutils literal notranslate\"><span class=\"pre\">WHERE</span> <span class=\"pre\">mycolumn=0</span></code>, both rows will match. Similarly, <code class=\"docutils literal notranslate\"><span class=\"pre\">WHERE</span> <span class=\"pre\">mycolumn=1</span></code>\nwill match the value <code class=\"docutils literal notranslate\"><span class=\"pre\">'abc1'</span></code>. Therefore, string type fields included in Django\nwill always cast the value to a string before using it in a query.</p>\n<p>If you implement custom model fields that inherit from\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.Field\" title=\"django.db.models.Field\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">Field</span></code></a> directly, are overriding\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/fields/#django.db.models.Field.get_prep_value\" title=\"django.db.models.Field.get_prep_value\"><code class=\"xref py py-meth docutils literal notranslate\"><span class=\"pre\">get_prep_value()</span></code></a>, or use\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/expressions/#django.db.models.expressions.RawSQL\" title=\"django.db.models.expressions.RawSQL\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">RawSQL</span></code></a>,\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#django.db.models.query.QuerySet.extra\" title=\"django.db.models.query.QuerySet.extra\"><code class=\"xref py py-meth docutils literal notranslate\"><span class=\"pre\">extra()</span></code></a>, or\n<a class=\"reference internal\" href=\"/id/1.11/topics/db/sql/#django.db.models.Manager.raw\" title=\"django.db.models.Manager.raw\"><code class=\"xref py py-meth docutils literal notranslate\"><span class=\"pre\">raw()</span></code></a>, you should ensure that you perform\nappropriate typecasting.</p>\n</section>\n</section>\n<section id=\"sqlite-notes\">\n<span id=\"id12\"></span><h2>Catatan SQLite<a class=\"heading-anchor\" href=\"#sqlite-notes\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p><a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a> provides an excellent development alternative for applications that\nare predominantly read-only or require a smaller installation footprint. As\nwith all database servers, though, there are some differences that are\nspecific to SQLite that you should be aware of.</p>\n<section id=\"substring-matching-and-case-sensitivity\">\n<span id=\"sqlite-string-matching\"></span><h3>Substring matching and case sensitivity<a class=\"heading-anchor\" href=\"#substring-matching-and-case-sensitivity\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>For all SQLite versions, there is some slightly counter-intuitive behavior when\nattempting to match some types of strings.  These are triggered when using the\n<a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#std-fieldlookup-iexact\"><code class=\"xref std std-lookup docutils literal notranslate\"><span class=\"pre\">iexact</span></code></a> or <a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#std-fieldlookup-contains\"><code class=\"xref std std-lookup docutils literal notranslate\"><span class=\"pre\">contains</span></code></a> filters in Querysets. The behavior\nsplits into two cases:</p>\n<p>1. For substring matching, all matches are done case-insensitively. That is a\nfilter such as <code class=\"docutils literal notranslate\"><span class=\"pre\">filter(name__contains=&quot;aa&quot;)</span></code> will match a name of <code class=\"docutils literal notranslate\"><span class=\"pre\">&quot;Aabb&quot;</span></code>.</p>\n<p>2. For strings containing characters outside the ASCII range, all exact string\nmatches are performed case-sensitively, even when the case-insensitive options\nare passed into the query. So the <a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#std-fieldlookup-iexact\"><code class=\"xref std std-lookup docutils literal notranslate\"><span class=\"pre\">iexact</span></code></a> filter will behave exactly\nthe same as the <a class=\"reference internal\" href=\"/id/1.11/ref/models/querysets/#std-fieldlookup-exact\"><code class=\"xref std std-lookup docutils literal notranslate\"><span class=\"pre\">exact</span></code></a> filter in these cases.</p>\n<p>Some possible workarounds for this are <a class=\"reference external\" href=\"https://www.sqlite.org/faq.html#q18\">documented at sqlite.org</a>, but they\naren't utilized by the default SQLite backend in Django, as incorporating them\nwould be fairly difficult to do robustly. Thus, Django exposes the default\nSQLite behavior and you should be aware of this when doing case-insensitive or\nsubstring filtering.</p>\n</section>\n<section id=\"old-sqlite-and-case-expressions\">\n<h3>Old SQLite and <code class=\"docutils literal notranslate\"><span class=\"pre\">CASE</span></code> expressions<a class=\"heading-anchor\" href=\"#old-sqlite-and-case-expressions\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>SQLite 3.6.23.1 and older contains a bug when <a class=\"reference external\" href=\"https://code.djangoproject.com/ticket/24148\">handling query parameters</a> in\na <code class=\"docutils literal notranslate\"><span class=\"pre\">CASE</span></code> expression that contains an <code class=\"docutils literal notranslate\"><span class=\"pre\">ELSE</span></code> and arithmetic.</p>\n<p>SQLite 3.6.23.1 telah diterbitkan di Maret 2010, dan kebanyakan penyaluran biner sekarang untuk serambi berbeda termasuk versi terbaru dari SQLite, dengan catatan pengecualian dari pemasang Python 2.7 untuk Windows.</p>\n<p>As of this writing, the latest release for Windows - Python 2.7.10 - includes\nSQLite 3.6.21. You can install <code class=\"docutils literal notranslate\"><span class=\"pre\">pysqlite2</span></code> or replace <code class=\"docutils literal notranslate\"><span class=\"pre\">sqlite3.dll</span></code> (by\ndefault installed in <code class=\"docutils literal notranslate\"><span class=\"pre\">C:\\Python27\\DLLs</span></code>) with a newer version from\n<a class=\"reference external\" href=\"https://www.sqlite.org/\">https://www.sqlite.org/</a> to remedy this issue.</p>\n</section>\n<section id=\"using-newer-versions-of-the-sqlite-db-api-2-0-driver\">\n<span id=\"using-newer-versions-of-pysqlite\"></span><h3>Using newer versions of the SQLite DB-API 2.0 driver<a class=\"heading-anchor\" href=\"#using-newer-versions-of-the-sqlite-db-api-2-0-driver\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django will use a <code class=\"docutils literal notranslate\"><span class=\"pre\">pysqlite2</span></code> module in preference to <code class=\"docutils literal notranslate\"><span class=\"pre\">sqlite3</span></code> as shipped\nwith the Python standard library if it finds one is available.</p>\n<p>This provides the ability to upgrade both the DB-API 2.0 interface or SQLite 3\nitself to versions newer than the ones included with your particular Python\nbinary distribution, if needed.</p>\n</section>\n<section id=\"database-is-locked-errors\">\n<h3>Kesalahan &quot;Basisdata terkunci&quot;<a class=\"heading-anchor\" href=\"#database-is-locked-errors\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>SQLite is meant to be a lightweight database, and thus can't support a high\nlevel of concurrency. <code class=\"docutils literal notranslate\"><span class=\"pre\">OperationalError:</span> <span class=\"pre\">database</span> <span class=\"pre\">is</span> <span class=\"pre\">locked</span></code> errors indicate\nthat your application is experiencing more concurrency than <code class=\"docutils literal notranslate\"><span class=\"pre\">sqlite</span></code> can\nhandle in default configuration. This error means that one thread or process has\nan exclusive lock on the database connection and another thread timed out\nwaiting for the lock the be released.</p>\n<p>Python's SQLite wrapper has\na default timeout value that determines how long the second thread is allowed to\nwait on the lock before it times out and raises the <code class=\"docutils literal notranslate\"><span class=\"pre\">OperationalError:</span> <span class=\"pre\">database</span>\n<span class=\"pre\">is</span> <span class=\"pre\">locked</span></code> error.</p>\n<p>Jika anda mendapatkan kesalahan ini, anda dapat menyelesaikannya dengan:</p>\n<ul>\n<li><p>Switching to another database backend. At a certain point SQLite becomes\ntoo &quot;lite&quot; for real-world applications, and these sorts of concurrency\nerrors indicate you've reached that point.</p></li>\n<li><p>Rewriting your code to reduce concurrency and ensure that database\ntransactions are short-lived.</p></li>\n<li><p>Increase the default timeout value by setting the <code class=\"docutils literal notranslate\"><span class=\"pre\">timeout</span></code> database\noption:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n    <span class=\"c1\"># ...</span>\n    <span class=\"s1\">&#39;timeout&#39;</span><span class=\"p\">:</span> <span class=\"mi\">20</span><span class=\"p\">,</span>\n    <span class=\"c1\"># ...</span>\n<span class=\"p\">}</span>\n</code></pre></div>\n<p>This will simply make SQLite wait a bit longer before throwing &quot;database\nis locked&quot; errors; it won't really do anything to solve them.</p>\n</li>\n</ul>\n</section>\n<section id=\"queryset-select-for-update-not-supported\">\n<h3><code class=\"docutils literal notranslate\"><span class=\"pre\">QuerySet.select_for_update()</span></code> tidak didukung<a class=\"heading-anchor\" href=\"#queryset-select-for-update-not-supported\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>SQLite does not support the <code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span> <span class=\"pre\">...</span> <span class=\"pre\">FOR</span> <span class=\"pre\">UPDATE</span></code> syntax. Calling it will\nhave no effect.</p>\n</section>\n<section id=\"pyformat-parameter-style-in-raw-queries-not-supported\">\n<h3>&quot;pyformat&quot; parameter style in raw queries not supported<a class=\"heading-anchor\" href=\"#pyformat-parameter-style-in-raw-queries-not-supported\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>For most backends, raw queries (<code class=\"docutils literal notranslate\"><span class=\"pre\">Manager.raw()</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">cursor.execute()</span></code>)\ncan use the &quot;pyformat&quot; parameter style, where placeholders in the query\nare given as <code class=\"docutils literal notranslate\"><span class=\"pre\">'%(name)s'</span></code> and the parameters are passed as a dictionary\nrather than a list. SQLite does not support this.</p>\n</section>\n</section>\n<section id=\"oracle-notes\">\n<span id=\"id13\"></span><h2>Catatan Oracle<a class=\"heading-anchor\" href=\"#oracle-notes\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django supports <a class=\"reference external\" href=\"https://www.oracle.com/\">Oracle Database Server</a> versions 11.2 and higher. Version\n5.2 through 6.4.1 of the <a class=\"reference external\" href=\"https://oracle.github.io/python-cx_Oracle/\">cx_Oracle</a> Python driver are supported.</p>\n<p>In order for the <code class=\"docutils literal notranslate\"><span class=\"pre\">python</span> <span class=\"pre\">manage.py</span> <span class=\"pre\">migrate</span></code> command to work, your Oracle\ndatabase user must have privileges to run the following commands:</p>\n<ul class=\"simple\">\n<li><p>CREATE TABLE</p></li>\n<li><p>CREATE SEQUENCE</p></li>\n<li><p>CREATE PROCEDURE</p></li>\n<li><p>CREATE TRIGGER</p></li>\n</ul>\n<p>To run a project's test suite, the user usually needs these <em>additional</em>\nprivileges:</p>\n<ul class=\"simple\">\n<li><p>CREATE USER</p></li>\n<li><p>ALTER USER</p></li>\n<li><p>DROP USER</p></li>\n<li><p>CREATE TABLESPACE</p></li>\n<li><p>DROP TABLESPACE</p></li>\n<li><p>CREATE SESSION WITH ADMIN OPTION</p></li>\n<li><p>CREATE TABLE WITH ADMIN OPTION</p></li>\n<li><p>CREATE SEQUENCE WITH ADMIN OPTION</p></li>\n<li><p>CREATE PROCEDURE WITH ADMIN OPTION</p></li>\n<li><p>CREATE TRIGGER WITH ADMIN OPTION</p></li>\n</ul>\n<p>Note that, while the RESOURCE role has the required CREATE TABLE, CREATE\nSEQUENCE, CREATE PROCEDURE and CREATE TRIGGER privileges, and a user\ngranted RESOURCE WITH ADMIN OPTION can grant RESOURCE, such a user cannot\ngrant the individual privileges (e.g. CREATE TABLE), and thus RESOURCE\nWITH ADMIN OPTION is not usually sufficient for running tests.</p>\n<p>Some test suites also create views; to run these, the user also needs\nthe CREATE VIEW WITH ADMIN OPTION privilege. In particular, this is needed\nfor Django's own test suite.</p>\n<p>All of these privileges are included in the DBA role, which is appropriate\nfor use on a private developer's database.</p>\n<p>Backend basisdata Oracle menggunakan paket <code class=\"docutils literal notranslate\"><span class=\"pre\">SYS.DBMS_LOB</span></code> dan <code class=\"docutils literal notranslate\"><span class=\"pre\">SYS.DBMS_RANDOM</span></code>, jadi pengguna anda akan membutuhkan menjalankan perizinan padanya. Itu secara biasa dapat diakses ke semua pengguna secara awal, tetapi di kasus itu tidak, anda akan butuh memberikan perizinan seperti itu:</p>\n<div class=\"code-block\" data-language=\"sql\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">SQL</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"SQL code\"><code><span class=\"k\">GRANT</span><span class=\"w\"> </span><span class=\"k\">EXECUTE</span><span class=\"w\"> </span><span class=\"k\">ON</span><span class=\"w\"> </span><span class=\"n\">SYS</span><span class=\"p\">.</span><span class=\"n\">DBMS_LOB</span><span class=\"w\"> </span><span class=\"k\">TO</span><span class=\"w\"> </span><span class=\"k\">user</span><span class=\"p\">;</span>\n<span class=\"k\">GRANT</span><span class=\"w\"> </span><span class=\"k\">EXECUTE</span><span class=\"w\"> </span><span class=\"k\">ON</span><span class=\"w\"> </span><span class=\"n\">SYS</span><span class=\"p\">.</span><span class=\"n\">DBMS_RANDOM</span><span class=\"w\"> </span><span class=\"k\">TO</span><span class=\"w\"> </span><span class=\"k\">user</span><span class=\"p\">;</span>\n</code></pre></div>\n<section id=\"id14\">\n<h3>Menyambung ke basisdata<a class=\"heading-anchor\" href=\"#id14\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>To connect using the service name of your Oracle database, your <code class=\"docutils literal notranslate\"><span class=\"pre\">settings.py</span></code>\nfile should look something like this:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">DATABASES</span> <span class=\"o\">=</span> <span class=\"p\">{</span>\n    <span class=\"s1\">&#39;default&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n        <span class=\"s1\">&#39;ENGINE&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;django.db.backends.oracle&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;NAME&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;xe&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;USER&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;a_user&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;PASSWORD&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;a_password&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;HOST&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;PORT&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;&#39;</span><span class=\"p\">,</span>\n    <span class=\"p\">}</span>\n<span class=\"p\">}</span>\n</code></pre></div>\n<p>In this case, you should leave both <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-HOST\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">HOST</span></code></a> and <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-PORT\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">PORT</span></code></a> empty.\nHowever, if you don't use a <code class=\"docutils literal notranslate\"><span class=\"pre\">tnsnames.ora</span></code> file or a similar naming method\nand want to connect using the SID (&quot;xe&quot; in this example), then fill in both\n<a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-HOST\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">HOST</span></code></a> and <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-PORT\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">PORT</span></code></a> like so:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">DATABASES</span> <span class=\"o\">=</span> <span class=\"p\">{</span>\n    <span class=\"s1\">&#39;default&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n        <span class=\"s1\">&#39;ENGINE&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;django.db.backends.oracle&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;NAME&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;xe&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;USER&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;a_user&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;PASSWORD&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;a_password&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;HOST&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;dbprod01ned.mycompany.com&#39;</span><span class=\"p\">,</span>\n        <span class=\"s1\">&#39;PORT&#39;</span><span class=\"p\">:</span> <span class=\"s1\">&#39;1540&#39;</span><span class=\"p\">,</span>\n    <span class=\"p\">}</span>\n<span class=\"p\">}</span>\n</code></pre></div>\n<p>You should either supply both <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-HOST\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">HOST</span></code></a> and <a class=\"reference internal\" href=\"/id/1.11/ref/settings/#std-setting-PORT\"><code class=\"xref std std-setting docutils literal notranslate\"><span class=\"pre\">PORT</span></code></a>, or leave\nboth as empty strings. Django will use a different connect descriptor depending\non that choice.</p>\n</section>\n<section id=\"threaded-option\">\n<h3>Threaded option<a class=\"heading-anchor\" href=\"#threaded-option\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>If you plan to run Django in a multithreaded environment (e.g. Apache using the\ndefault MPM module on any modern operating system), then you <strong>must</strong> set\nthe <code class=\"docutils literal notranslate\"><span class=\"pre\">threaded</span></code> option of your Oracle database configuration to True:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n    <span class=\"s1\">&#39;threaded&#39;</span><span class=\"p\">:</span> <span class=\"kc\">True</span><span class=\"p\">,</span>\n<span class=\"p\">},</span>\n</code></pre></div>\n<p>Failure to do this may result in crashes and other odd behavior.</p>\n</section>\n<section id=\"insert-returning-into\">\n<h3>INSERT ... RETURNING INTO<a class=\"heading-anchor\" href=\"#insert-returning-into\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>By default, the Oracle backend uses a <code class=\"docutils literal notranslate\"><span class=\"pre\">RETURNING</span> <span class=\"pre\">INTO</span></code> clause to efficiently\nretrieve the value of an <code class=\"docutils literal notranslate\"><span class=\"pre\">AutoField</span></code> when inserting new rows.  This behavior\nmay result in a <code class=\"docutils literal notranslate\"><span class=\"pre\">DatabaseError</span></code> in certain unusual setups, such as when\ninserting into a remote table, or into a view with an <code class=\"docutils literal notranslate\"><span class=\"pre\">INSTEAD</span> <span class=\"pre\">OF</span></code> trigger.\nThe <code class=\"docutils literal notranslate\"><span class=\"pre\">RETURNING</span> <span class=\"pre\">INTO</span></code> clause can be disabled by setting the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">use_returning_into</span></code> option of the database configuration to False:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"s1\">&#39;OPTIONS&#39;</span><span class=\"p\">:</span> <span class=\"p\">{</span>\n    <span class=\"s1\">&#39;use_returning_into&#39;</span><span class=\"p\">:</span> <span class=\"kc\">False</span><span class=\"p\">,</span>\n<span class=\"p\">},</span>\n</code></pre></div>\n<p>In this case, the Oracle backend will use a separate <code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span></code> query to\nretrieve AutoField values.</p>\n</section>\n<section id=\"naming-issues\">\n<h3>Masalah penamaan<a class=\"heading-anchor\" href=\"#naming-issues\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Oracle imposes a name length limit of 30 characters. To accommodate this, the\nbackend truncates database identifiers to fit, replacing the final four\ncharacters of the truncated name with a repeatable MD5 hash value.\nAdditionally, the backend turns database identifiers to all-uppercase.</p>\n<p>To prevent these transformations (this is usually required only when dealing\nwith legacy databases or accessing tables which belong to other users), use\na quoted name as the value for <code class=\"docutils literal notranslate\"><span class=\"pre\">db_table</span></code>:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"k\">class</span><span class=\"w\"> </span><span class=\"nc\">LegacyModel</span><span class=\"p\">(</span><span class=\"n\">models</span><span class=\"o\">.</span><span class=\"n\">Model</span><span class=\"p\">):</span>\n    <span class=\"k\">class</span><span class=\"w\"> </span><span class=\"nc\">Meta</span><span class=\"p\">:</span>\n        <span class=\"n\">db_table</span> <span class=\"o\">=</span> <span class=\"s1\">&#39;&quot;name_left_in_lowercase&quot;&#39;</span>\n\n<span class=\"k\">class</span><span class=\"w\"> </span><span class=\"nc\">ForeignModel</span><span class=\"p\">(</span><span class=\"n\">models</span><span class=\"o\">.</span><span class=\"n\">Model</span><span class=\"p\">):</span>\n    <span class=\"k\">class</span><span class=\"w\"> </span><span class=\"nc\">Meta</span><span class=\"p\">:</span>\n        <span class=\"n\">db_table</span> <span class=\"o\">=</span> <span class=\"s1\">&#39;&quot;OTHER_USER&quot;.&quot;NAME_ONLY_SEEMS_OVER_30&quot;&#39;</span>\n</code></pre></div>\n<p>Quoted names can also be used with Django's other supported database\nbackends; except for Oracle, however, the quotes have no effect.</p>\n<p>When running <code class=\"docutils literal notranslate\"><span class=\"pre\">migrate</span></code>, an <code class=\"docutils literal notranslate\"><span class=\"pre\">ORA-06552</span></code> error may be encountered if\ncertain Oracle keywords are used as the name of a model field or the\nvalue of a <code class=\"docutils literal notranslate\"><span class=\"pre\">db_column</span></code> option.  Django quotes all identifiers used\nin queries to prevent most such problems, but this error can still\noccur when an Oracle datatype is used as a column name.  In\nparticular, take care to avoid using the names <code class=\"docutils literal notranslate\"><span class=\"pre\">date</span></code>,\n<code class=\"docutils literal notranslate\"><span class=\"pre\">timestamp</span></code>, <code class=\"docutils literal notranslate\"><span class=\"pre\">number</span></code> or <code class=\"docutils literal notranslate\"><span class=\"pre\">float</span></code> as a field name.</p>\n</section>\n<section id=\"null-and-empty-strings\">\n<h3>NULL and empty strings<a class=\"heading-anchor\" href=\"#null-and-empty-strings\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>Django generally prefers to use the empty string ('') rather than\nNULL, but Oracle treats both identically. To get around this, the\nOracle backend ignores an explicit <code class=\"docutils literal notranslate\"><span class=\"pre\">null</span></code> option on fields that\nhave the empty string as a possible value and generates DDL as if\n<code class=\"docutils literal notranslate\"><span class=\"pre\">null=True</span></code>. When fetching from the database, it is assumed that\na <code class=\"docutils literal notranslate\"><span class=\"pre\">NULL</span></code> value in one of these fields really means the empty\nstring, and the data is silently converted to reflect this assumption.</p>\n</section>\n<section id=\"id15\">\n<h3>Batasan <code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code><a class=\"heading-anchor\" href=\"#id15\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>The Oracle backend stores <code class=\"docutils literal notranslate\"><span class=\"pre\">TextFields</span></code> as <code class=\"docutils literal notranslate\"><span class=\"pre\">NCLOB</span></code> columns. Oracle imposes\nsome limitations on the usage of such LOB columns in general:</p>\n<ul class=\"simple\">\n<li><p>LOB columns may not be used as primary keys.</p></li>\n<li><p>LOB columns may not be used in indexes.</p></li>\n<li><p>LOB columns may not be used in a <code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span> <span class=\"pre\">DISTINCT</span></code> list. This means that\nattempting to use the <code class=\"docutils literal notranslate\"><span class=\"pre\">QuerySet.distinct</span></code> method on a model that\nincludes <code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code> columns will result in an <code class=\"docutils literal notranslate\"><span class=\"pre\">ORA-00932</span></code> error when\nrun against Oracle. As a workaround, use the <code class=\"docutils literal notranslate\"><span class=\"pre\">QuerySet.defer</span></code> method in\nconjunction with <code class=\"docutils literal notranslate\"><span class=\"pre\">distinct()</span></code> to prevent <code class=\"docutils literal notranslate\"><span class=\"pre\">TextField</span></code> columns from being\nincluded in the <code class=\"docutils literal notranslate\"><span class=\"pre\">SELECT</span> <span class=\"pre\">DISTINCT</span></code> list.</p></li>\n</ul>\n</section>\n</section>\n<section id=\"using-a-3rd-party-database-backend\">\n<span id=\"third-party-notes\"></span><h2>Menggunakan backend basisdata pihak ketiga<a class=\"heading-anchor\" href=\"#using-a-3rd-party-database-backend\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>In addition to the officially supported databases, there are backends provided\nby 3rd parties that allow you to use other databases with Django:</p>\n<ul class=\"simple\">\n<li><p><a class=\"reference external\" href=\"https://github.com/sqlanywhere/sqlany-django\">SAP SQL Anywhere</a></p></li>\n<li><p><a class=\"reference external\" href=\"https://pypi.python.org/pypi/ibm_db/\">IBM DB2</a></p></li>\n<li><p><a class=\"reference external\" href=\"https://django-mssql.readthedocs.io/en/latest/\">Microsoft SQL Server</a></p></li>\n<li><p><a class=\"reference external\" href=\"https://github.com/maxirobaina/django-firebird\">Firebird</a></p></li>\n<li><p><a class=\"reference external\" href=\"https://github.com/lionheart/django-pyodbc/\">ODBC</a></p></li>\n</ul>\n<p>The Django versions and ORM features supported by these unofficial backends\nvary considerably. Queries regarding the specific capabilities of these\nunofficial backends, along with any support queries, should be directed to\nthe support channels provided by each 3rd party project.</p>\n</section>","rootId":"databases","toc":[{"title":"Catatan umum","anchor":"general-notes","children":[{"title":"Hubungan tetap","anchor":"persistent-connections","children":[{"title":"Connection management","anchor":"connection-management","children":[]},{"title":"Peringatan","anchor":"caveats","children":[]}]},{"title":"Encoding","anchor":"encoding","children":[]}]},{"title":"Catatan PostgreSQL","anchor":"postgresql-notes","children":[{"title":"Pengaturan hubungan PostgreSQL","anchor":"postgresql-connection-settings","children":[]},{"title":"Mengoptimalkan konfigurasi PostgreSQL","anchor":"optimizing-postgresql-s-configuration","children":[]},{"title":"Isolation level","anchor":"isolation-level","children":[]},{"title":"Indeks untuk kolom varchar dan text","anchor":"indexes-for-varchar-and-text-columns","children":[]},{"title":"Migration operation for adding extensions","anchor":"migration-operation-for-adding-extensions","children":[]},{"title":"Server-side cursors","anchor":"server-side-cursors","children":[{"title":"Transaction pooling and server-side cursors","anchor":"transaction-pooling-and-server-side-cursors","children":[]}]},{"title":"Manually-specifying values of auto-incrementing primary keys","anchor":"manually-specifying-values-of-auto-incrementing-primary-keys","children":[]},{"title":"Test database templates","anchor":"test-database-templates","children":[]},{"title":"Speeding up test execution with non-durable settings","anchor":"speeding-up-test-execution-with-non-durable-settings","children":[]}]},{"title":"Catatan MySQL","anchor":"mysql-notes","children":[{"title":"Versi dukungan","anchor":"version-support","children":[]},{"title":"Mesin penyimpanan","anchor":"storage-engines","children":[]},{"title":"MySQL DB API Drivers","anchor":"mysql-db-api-drivers","children":[{"title":"Basisdata MySQL","anchor":"id8","children":[]},{"title":"mysqlclient","anchor":"id9","children":[]},{"title":"MySQL Connector/Python","anchor":"id10","children":[]}]},{"title":"Pengertian zona waktu","anchor":"time-zone-definitions","children":[]},{"title":"Membuat basisdata anda","anchor":"creating-your-database","children":[{"title":"Pengaturan pemeriksaan","anchor":"collation-settings","children":[]}]},{"title":"Menyambung ke basisdata","anchor":"connecting-to-the-database","children":[{"title":"Mengatur sql_mode","anchor":"setting-sql-mode","children":[]},{"title":"Isolation level","anchor":"mysql-isolation-level","children":[]}]},{"title":"Membuat tabel anda","anchor":"creating-your-tables","children":[]},{"title":"Nama tabel","anchor":"table-names","children":[]},{"title":"Savepoint","anchor":"savepoints","children":[]},{"title":"Notes on specific fields","anchor":"notes-on-specific-fields","children":[{"title":"Character fields","anchor":"character-fields","children":[]},{"title":"Batasan TextField","anchor":"textfield-limitations","children":[]},{"title":"Fractional seconds support for Time and DateTime fields","anchor":"fractional-seconds-support-for-time-and-datetime-fields","children":[]},{"title":"Kolom TIMESTAMP","anchor":"timestamp-columns","children":[]}]},{"title":"Row locking with QuerySet.select_for_update()","anchor":"row-locking-with-queryset-select-for-update","children":[]},{"title":"Automatic typecasting can cause unexpected results","anchor":"automatic-typecasting-can-cause-unexpected-results","children":[]}]},{"title":"Catatan SQLite","anchor":"sqlite-notes","children":[{"title":"Substring matching and case sensitivity","anchor":"substring-matching-and-case-sensitivity","children":[]},{"title":"Old SQLite and CASE expressions","anchor":"old-sqlite-and-case-expressions","children":[]},{"title":"Using newer versions of the SQLite DB-API 2.0 driver","anchor":"using-newer-versions-of-the-sqlite-db-api-2-0-driver","children":[]},{"title":"Kesalahan \"Basisdata terkunci\"","anchor":"database-is-locked-errors","children":[]},{"title":"QuerySet.select_for_update() tidak didukung","anchor":"queryset-select-for-update-not-supported","children":[]},{"title":"\"pyformat\" parameter style in raw queries not supported","anchor":"pyformat-parameter-style-in-raw-queries-not-supported","children":[]}]},{"title":"Catatan Oracle","anchor":"oracle-notes","children":[{"title":"Menyambung ke basisdata","anchor":"id14","children":[]},{"title":"Threaded option","anchor":"threaded-option","children":[]},{"title":"INSERT ... RETURNING INTO","anchor":"insert-returning-into","children":[]},{"title":"Masalah penamaan","anchor":"naming-issues","children":[]},{"title":"NULL and empty strings","anchor":"null-and-empty-strings","children":[]},{"title":"Batasan TextField","anchor":"id15","children":[]}]},{"title":"Menggunakan backend basisdata pihak ketiga","anchor":"using-a-3rd-party-database-backend","children":[]}],"breadcrumbs":[{"docname":"ref/index","title":"Acuan API","url":"/id/1.11/ref/"}],"prev":{"docname":"ref/csrf","title":"Perlindungan Cross Site Request Forgery","url":"/id/1.11/ref/csrf/"},"next":{"docname":"ref/django-admin","title":"django-admin dan manage.py","url":"/id/1.11/ref/django-admin/"},"formats":{"html":"/id/1.11/ref/databases/","markdown":"/id/1.11/ref/databases.md","json":"/id/1.11/ref/databases.json"},"source":"https://github.com/django/django/blob/stable/1.11.x/docs/ref/databases.txt","official":"https://docs.djangoproject.com/id/1.11/ref/databases/","inVersions":["6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11","1.10","1.9"],"inLocales":["en","fr","ja","id","pt-br","ko","es","el","pl"]}