Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Django

The web framework for perfectionists with deadlines.

Documentation

Databases

Django officially supports the following databases:

There are also a number ofdatabase backends provided by third parties.

Django attempts to support as many features as possible on all databasebackends. However, not all database backends are alike, and we’ve had to makedesign decisions on which features to support and which assumptions we can makesafely.

This file describes some of the features that might be relevant to Djangousage. It is not intended as a replacement for server-specific documentation orreference manuals.

General notes

Persistent connections

Persistent connections avoid the overhead of reestablishing a connection tothe database in each HTTP request. They’re controlled by theCONN_MAX_AGE parameter which defines the maximum lifetime of aconnection. It can be set independently for each database.

The default value is0, preserving the historical behavior of closing thedatabase connection at the end of each request. To enable persistentconnections, setCONN_MAX_AGE to a positive integer of seconds. Forunlimited persistent connections, set it toNone.

When using ASGI, persistent connections should be disabled. Instead, use yourdatabase backend’s built-in connection pooling if available, or investigate athird-party connection pooling option if required.

Connection management

Django opens a connection to the database when it first makes a databasequery. It keeps this connection open and reuses it in subsequent requests.Django closes the connection once it exceeds the maximum age defined byCONN_MAX_AGE or when it isn’t usable any longer.

In detail, Django automatically opens a connection to the database whenever itneeds one and doesn’t have one already — either because this is the firstconnection, or because the previous connection was closed.

At the beginning of each request, Django closes the connection if it hasreached its maximum age. If your database terminates idle connections aftersome time, you should setCONN_MAX_AGE to a lower value, so thatDjango doesn’t attempt to use a connection that has been terminated by thedatabase server. (This problem may only affect very low traffic sites.)

At the end of each request, Django closes the connection if it has reached itsmaximum age or if it is in an unrecoverable error state. If any databaseerrors have occurred while processing the requests, Django checks whether theconnection still works, and closes it if it doesn’t. Thus, database errorsaffect at most one request per each application’s worker thread; if theconnection becomes unusable, the next request gets a fresh connection.

SettingCONN_HEALTH_CHECKS toTrue can be used to improve therobustness of connection reuse and prevent errors when a connection has beenclosed by the database server which is now ready to accept and serve newconnections, e.g. after database server restart. The health check is performedonly once per request and only if the database is being accessed during thehandling of the request.

Caveats

Since each thread maintains its own connection, your database must support atleast as many simultaneous connections as you have worker threads.

Sometimes a database won’t be accessed by the majority of your views, forexample because it’s the database of an external system, or thanks to caching.In such cases, you should setCONN_MAX_AGE to a low value or even0, because it doesn’t make sense to maintain a connection that’s unlikelyto be reused. This will help keep the number of simultaneous connections tothis database small.

The development server creates a new thread for each request it handles,negating the effect of persistent connections. Don’t enable them duringdevelopment.

When Django establishes a connection to the database, it sets up appropriateparameters, depending on the backend being used. If you enable persistentconnections, this setup is no longer repeated every request. If you modifyparameters such as the connection’s isolation level or time zone, you shouldeither restore Django’s defaults at the end of each request, force anappropriate value at the beginning of each request, or disable persistentconnections.

If a connection is created in a long-running process, outside of Django’srequest-response cycle, the connection will remain open until explicitlyclosed, or timeout occurs. You can usedjango.db.close_old_connections() toclose all old or unusable connections.

Encoding

Django assumes that all databases use UTF-8 encoding. Using other encodings mayresult in unexpected behavior such as “value too long” errors from yourdatabase for data that is valid in Django. See the database specific notesbelow for information on how to set up your database correctly.

PostgreSQL notes

Django supports PostgreSQL 13 and higher.psycopg 3.1.8+ orpsycopg22.8.4+ is required, though the latestpsycopg 3.1.8+ is recommended.

Note

Support forpsycopg2 is likely to be deprecated and removed at somepoint in the future.

PostgreSQL connection settings

SeeHOST for details.

To connect using a service name from theconnection service file and apassword from thepassword file, you must specify them in theOPTIONS part of your database configuration inDATABASES:

settings.py
DATABASES={"default":{"ENGINE":"django.db.backends.postgresql","OPTIONS":{"service":"my_service","passfile":".my_pgpass",},}}
.pg_service.conf
[my_service]host=localhostuser=USERdbname=NAMEport=5432
.my_pgpass
localhost:5432:NAME:USER:PASSWORD

The PostgreSQL backend passes the content ofOPTIONS as keywordarguments to the connection constructor, allowing for more advanced controlof driver behavior. All availableparameters are described in detail in thePostgreSQL documentation.

Warning

Using a service name for testing purposes is not supported. Thismay be implemented later.

Optimizing PostgreSQL’s configuration

Django needs the following parameters for its database connections:

  • client_encoding:'UTF8',

  • default_transaction_isolation:'readcommitted' by default,or the value set in the connection options (see below),

  • timezone:

If these parameters already have the correct values, Django won’t set them forevery new connection, which improves performance slightly. You can configurethem directly inpostgresql.conf or more conveniently per databaseuser withALTER ROLE.

Django will work just fine without this optimization, but each new connectionwill do some additional queries to set these parameters.

Isolation level

Like PostgreSQL itself, Django defaults to theREADCOMMITTEDisolationlevel. If you need a higher isolation level such asREPEATABLEREAD orSERIALIZABLE, set it in theOPTIONS part of your databaseconfiguration inDATABASES:

fromdjango.db.backends.postgresql.psycopg_anyimportIsolationLevelDATABASES={# ..."OPTIONS":{"isolation_level":IsolationLevel.SERIALIZABLE,},}

Note

Under higher isolation levels, your application should be prepared tohandle exceptions raised on serialization failures. This option isdesigned for advanced uses.

Role

If you need to use a different role for database connections than the role usedto establish the connection, set it in theOPTIONS part of yourdatabase configuration inDATABASES:

DATABASES={"default":{"ENGINE":"django.db.backends.postgresql",# ..."OPTIONS":{"assume_role":"my_application_role",},},}

Connection pool

New in Django 5.1.

To use a connection pool withpsycopg, you can either set"pool" in theOPTIONS part of your database configuration inDATABASESto be a dict to be passed toConnectionPool, ortoTrue to use theConnectionPool defaults:

DATABASES={"default":{"ENGINE":"django.db.backends.postgresql",# ..."OPTIONS":{"pool":True,},},}

This option requirespsycopg[pool] orpsycopg-pool to be installedand is ignored withpsycopg2.

Server-side parameters binding

Withpsycopg 3.1.8+, Django defaults to theclient-side bindingcursors. If you want to use theserver-side binding set it in theOPTIONS part of your database configuration inDATABASES:

DATABASES={"default":{"ENGINE":"django.db.backends.postgresql",# ..."OPTIONS":{"server_side_binding":True,},},}

This option is ignored withpsycopg2.

Indexes forvarchar andtext columns

When specifyingdb_index=True on your model fields, Django typicallyoutputs a singleCREATEINDEX statement. However, if the database typefor the field is eithervarchar ortext (e.g., used byCharField,FileField, andTextField), then Django will createan additional index that uses an appropriatePostgreSQL operator classfor the column. The extra index is necessary to correctly performlookups that use theLIKE operator in their SQL, as is done with thecontains andstartswith lookup types.

Migration operation for adding extensions

If you need to add a PostgreSQL extension (likehstore,postgis, etc.)using a migration, use theCreateExtension operation.

Server-side cursors

When usingQuerySet.iterator(), Django opens aserver-sidecursor. By default, PostgreSQL assumes thatonly the first 10% of the results of cursor queries will be fetched. The queryplanner spends less time planning the query and starts returning resultsfaster, but this could diminish performance if more than 10% of the results areretrieved. PostgreSQL’s assumptions on the number of rows retrieved for acursor query is controlled with thecursor_tuple_fraction option.

Transaction pooling and server-side cursors

Using a connection pooler in transaction pooling mode (e.g.PgBouncer)requires disabling server-side cursors for that connection.

Server-side cursors are local to a connection and remain open at the end of atransaction whenAUTOCOMMIT isTrue. Asubsequent transaction may attempt to fetch more results from a server-sidecursor. In transaction pooling mode, there’s no guarantee that subsequenttransactions will use the same connection. If a different connection is used,an error is raised when the transaction references the server-side cursor,because server-side cursors are only accessible in the connection in which theywere created.

One solution is to disable server-side cursors for a connection inDATABASES by settingDISABLE_SERVER_SIDE_CURSORS toTrue.

To benefit from server-side cursors in transaction pooling mode, you could setupanother connection to the database in order toperform queries that use server-side cursors. This connection needs to eitherbe directly to the database or to a connection pooler in session pooling mode.

Another option is to wrap eachQuerySet using server-side cursors in anatomic() block, because it disablesautocommitfor the duration of the transaction. This way, the server-side cursor will onlylive for the duration of the transaction.

Manually-specifying values of auto-incrementing primary keys

Django uses PostgreSQL’s identity columns to store auto-incrementing primarykeys. An identity column is populated with values from asequence that keepstrack of the next available value. Manually assigning a value to anauto-incrementing field doesn’t update the field’s sequence, which might latercause a conflict. For example:

>>>fromdjango.contrib.auth.modelsimportUser>>>User.objects.create(username="alice",pk=1)<User: alice>>>># The sequence hasn't been updated; its next value is 1.>>>User.objects.create(username="bob")IntegrityError: duplicate key value violates unique constraint"auth_user_pkey" DETAIL:  Key (id)=(1) already exists.

If you need to specify such values, reset the sequence afterward to avoidreusing a value that’s already in the table. Thesqlsequenceresetmanagement command generates the SQL statements to do that.

Test database templates

You can use theTEST['TEMPLATE'] setting to specifyatemplate (e.g.'template0') from which to create a test database.

Speeding up test execution with non-durable settings

You can speed up test execution times byconfiguring PostgreSQL to benon-durable.

Warning

This is dangerous: it will make your database more susceptible to data lossor corruption in the case of a server crash or power loss. Only use this ona development machine where you can easily restore the entire contents ofall databases in the cluster.

MariaDB notes

Django supports MariaDB 10.5 and higher.

To use MariaDB, use the MySQL backend, which is shared between the two. See theMySQL notes for more details.

MySQL notes

Version support

Django supports MySQL 8.0.11 and higher.

Django’sinspectdb feature uses theinformation_schema database, whichcontains detailed data on all database schemas.

Django expects the database to support Unicode (UTF-8 encoding) and delegates toit the task of enforcing transactions and referential integrity. It is importantto be aware of the fact that the two latter ones aren’t actually enforced byMySQL when using the MyISAM storage engine, see the next section.

Storage engines

MySQL has severalstorage engines. You can change the default storage enginein the server configuration.

MySQL’s default storage engine isInnoDB. This engine is fully transactionaland supports foreign key references. It’s the recommended choice. However, theInnoDB autoincrement counter is lost on a MySQL restart because it does notremember theAUTO_INCREMENT value, instead recreating it as “max(id)+1”.This may result in an inadvertent reuse ofAutoFieldvalues.

The main drawbacks ofMyISAM are that it doesn’t support transactions orenforce foreign-key constraints.

MySQL DB API Drivers

MySQL has a couple drivers that implement the Python Database API described inPEP 249:

  • mysqlclient is a native driver. It’sthe recommended choice.

  • MySQL Connector/Python is a pure Python driver from Oracle that does notrequire the MySQL client library or any Python modules outside the standardlibrary.

These drivers are thread-safe and provide connection pooling.

In addition to a DB API driver, Django needs an adapter to access the databasedrivers from its ORM. Django provides an adapter for mysqlclient while MySQLConnector/Python includesits own.

mysqlclient

Django requiresmysqlclient 1.4.3 or later.

MySQL Connector/Python

MySQL Connector/Python is available from thedownload page.The Django adapter is available in versions 1.1.X and later. It may notsupport the most recent releases of Django.

Time zone definitions

If you plan on using Django’stimezone support,usemysql_tzinfo_to_sql to load time zone tables into the MySQL database.This needs to be done just once for your MySQL server, not per database.

Creating your database

You cancreate your database using the command-line tools and this SQL:

CREATEDATABASE<dbname>CHARACTERSETutf8;

This ensures all tables and columns will use UTF-8 by default.

Collation settings

The collation setting for a column controls the order in which data is sortedas well as what strings compare as equal. You can specify thedb_collationparameter to set the collation name of the column forCharField andTextField.

The collation can also be set on a database-wide level and per-table. This isdocumented thoroughly in the MySQL documentation. In such cases, you mustset the collation by directly manipulating the database settings or tables.Django doesn’t provide an API to change them.

By default, with a UTF-8 database, MySQL will use theutf8_general_ci collation. This results in all string equalitycomparisons being done in acase-insensitive manner. That is,"Fred" and"freD" are considered equal at the database level. If you have a uniqueconstraint on a field, it would be illegal to try to insert both"aa" and"AA" into the same column, since they compare as equal (and, hence,non-unique) with the default collation. If you want case-sensitive comparisonson a particular column or table, change the column or table to use theutf8_bin collation.

Please note that according toMySQL Unicode Character Sets, comparisons fortheutf8_general_ci collation are faster, but slightly less correct, thancomparisons forutf8_unicode_ci. If this is acceptable for your application,you should useutf8_general_ci because it is faster. If this is not acceptable(for example, if you require German dictionary order), useutf8_unicode_cibecause it is more accurate.

Warning

Model formsets validate unique fields in a case-sensitive manner. Thus whenusing a case-insensitive collation, a formset with unique field values thatdiffer only by case will pass validation, but upon callingsave(), anIntegrityError will be raised.

Connecting to the database

Refer to thesettings documentation.

Connection settings are used in this order:

  1. OPTIONS.

  2. NAME,USER,PASSWORD,HOST,PORT

  3. MySQL option files.

In other words, if you set the name of the database inOPTIONS,this will take precedence overNAME, which would overrideanything in aMySQL option file.

Here’s a sample configuration which uses a MySQL option file:

# settings.pyDATABASES={"default":{"ENGINE":"django.db.backends.mysql","OPTIONS":{"read_default_file":"/path/to/my.cnf",},}}
# my.cnf[client]database=NAMEuser=USERpassword=PASSWORDdefault-character-set=utf8

Several otherMySQLdb connection options may be useful, such asssl,init_command, andsql_mode.

Settingsql_mode

The default value of thesql_mode option containsSTRICT_TRANS_TABLES.That option escalates warnings into errors when data are truncated uponinsertion, so Django highly recommends activating astrict mode for MySQL toprevent data loss (eitherSTRICT_TRANS_TABLES orSTRICT_ALL_TABLES).

If you need to customize the SQL mode, you can set thesql_mode variablelike other MySQL options: either in a config file or with the entry'init_command':"SETsql_mode='STRICT_TRANS_TABLES'" in theOPTIONS part of your database configuration inDATABASES.

Isolation level

When running concurrent loads, database transactions from different sessions(say, separate threads handling different requests) may interact with eachother. These interactions are affected by each session’stransaction isolationlevel. You can set a connection’s isolation level with an'isolation_level' entry in theOPTIONS part of your databaseconfiguration inDATABASES. Valid values forthis entry are the four standard isolation levels:

  • 'readuncommitted'

  • 'readcommitted'

  • 'repeatableread'

  • 'serializable'

orNone to use the server’s configured isolation level. However, Djangoworks best with and defaults to read committed rather than MySQL’s default,repeatable read. Data loss is possible with repeatable read. In particular,you may see cases whereget_or_create()will raise anIntegrityError but the object won’t appear ina subsequentget() call.

Creating your tables

When Django generates the schema, it doesn’t specify a storage engine, sotables will be created with whatever default storage engine your databaseserver is configured for. The easiest solution is to set your database server’sdefault storage engine to the desired engine.

If you’re using a hosting service and can’t change your server’s defaultstorage engine, you have a couple of options.

  • After the tables are created, execute anALTERTABLE statement toconvert a table to a new storage engine (such as InnoDB):

    ALTERTABLE<tablename>ENGINE=INNODB;

    This can be tedious if you have a lot of tables.

  • Another option is to use theinit_command option for MySQLdb prior tocreating your tables:

    "OPTIONS":{"init_command":"SET default_storage_engine=INNODB",}

    This sets the default storage engine upon connecting to the database.After your tables have been created, you should remove this option as itadds a query that is only needed during table creation to each databaseconnection.

Table names

There areknown issues in even the latest versions of MySQL that can cause thecase of a table name to be altered when certain SQL statements are executedunder certain conditions. It is recommended that you use lowercase tablenames, if possible, to avoid any problems that might arise from this behavior.Django uses lowercase table names when it auto-generates table names frommodels, so this is mainly a consideration if you are overriding the table namevia thedb_table parameter.

Savepoints

Both the Django ORM and MySQL (when using the InnoDBstorage engine) support databasesavepoints.

If you use the MyISAM storage engine please be aware of the fact that you willreceive database-generated errors if you try to use thesavepoint-relatedmethods of the transactions API. The reasonfor this is that detecting the storage engine of a MySQL database/table is anexpensive operation so it was decided it isn’t worth to dynamically convertthese methods in no-op’s based in the results of such detection.

Notes on specific fields

Character fields

Any fields that are stored withVARCHAR column types may have theirmax_length restricted to 255 characters if you are usingunique=Truefor the field. This affectsCharField,SlugField. Seethe MySQL documentation for moredetails.

TextField limitations

MySQL can index only the first N chars of aBLOB orTEXT column. SinceTextField doesn’t have a defined length, you can’t mark it asunique=True. MySQL will report: “BLOB/TEXT column ‘<db_column>’ used in keyspecification without a key length”.

Fractional seconds support for Time and DateTime fields

MySQL can store fractional seconds, provided that the column definitionincludes a fractional indication (e.g.DATETIME(6)).

Django will not upgrade existing columns to include fractional seconds if thedatabase server supports it. If you want to enable them on an existing database,it’s up to you to either manually update the column on the target database, byexecuting a command like:

ALTERTABLE`your_table`MODIFY`your_datetime_column`DATETIME(6)

or using aRunSQL operation in adata migration.

TIMESTAMP columns

If you are using a legacy database that containsTIMESTAMP columns, you mustsetUSE_TZ=False to avoid data corruption.inspectdb maps these columns toDateTimeField and if you enable timezone support,both MySQL and Django will attempt to convert the values from UTC to local time.

Row locking withQuerySet.select_for_update()

MySQL and MariaDB do not support some options to theSELECT...FORUPDATEstatement. Ifselect_for_update() is used with an unsupported option, thenaNotSupportedError is raised.

Option

MariaDB

MySQL

SKIPLOCKED

X (≥10.6)

X

NOWAIT

X

X

OF

X

NOKEY

When usingselect_for_update() on MySQL, make sure you filter a querysetagainst at least a set of fields contained in unique constraints or onlyagainst fields covered by indexes. Otherwise, an exclusive write lock will beacquired over the full table for the duration of the transaction.

Automatic typecasting can cause unexpected results

When performing a query on a string type, but with an integer value, MySQL willcoerce the types of all values in the table to an integer before performing thecomparison. If your table contains the values'abc','def' and youquery forWHEREmycolumn=0, both rows will match. Similarly,WHEREmycolumn=1will match the value'abc1'. Therefore, string type fields included in Djangowill always cast the value to a string before using it in a query.

If you implement custom model fields that inherit fromField directly, are overridingget_prep_value(), or useRawSQL,extra(), orraw(), you should ensure that you performappropriate typecasting.

SQLite notes

Django supports SQLite 3.31.0 and later.

SQLite provides an excellent development alternative for applications thatare predominantly read-only or require a smaller installation footprint. Aswith all database servers, though, there are some differences that arespecific to SQLite that you should be aware of.

Substring matching and case sensitivity

For all SQLite versions, there is some slightly counterintuitive behavior whenattempting to match some types of strings. These are triggered when using theiexact orcontains filters in Querysets. The behaviorsplits into two cases:

1. For substring matching, all matches are done case-insensitively. That is afilter such asfilter(name__contains="aa") will match a name of"Aabb".

2. For strings containing characters outside the ASCII range, all exact stringmatches are performed case-sensitively, even when the case-insensitive optionsare passed into the query. So theiexact filter will behave exactlythe same as theexact filter in these cases.

Some possible workarounds for this aredocumented at sqlite.org, but theyaren’t utilized by the default SQLite backend in Django, as incorporating themwould be fairly difficult to do robustly. Thus, Django exposes the defaultSQLite behavior and you should be aware of this when doing case-insensitive orsubstring filtering.

Decimal handling

SQLite has no real decimal internal type. Decimal values are internallyconverted to theREAL data type (8-byte IEEE floating point number), asexplained in theSQLite datatypes documentation, so they don’t supportcorrectly-rounded decimal floating point arithmetic.

“Database is locked” errors

SQLite is meant to be a lightweight database, and thus can’t support a highlevel of concurrency.OperationalError:databaseislocked errors indicatethat your application is experiencing more concurrency thansqlite canhandle in default configuration. This error means that one thread or process hasan exclusive lock on the database connection and another thread timed outwaiting for the lock the be released.

Python’s SQLite wrapper hasa default timeout value that determines how long the second thread is allowed towait on the lock before it times out and raises theOperationalError:databaseislocked error.

If you’re getting this error, you can solve it by:

  • Switching to another database backend. At a certain point SQLite becomestoo “lite” for real-world applications, and these sorts of concurrencyerrors indicate you’ve reached that point.

  • Rewriting your code to reduce concurrency and ensure that databasetransactions are short-lived.

  • Increase the default timeout value by setting thetimeout databaseoption:

    "OPTIONS":{# ..."timeout":20,# ...}

    This will make SQLite wait a bit longer before throwing “database is locked”errors; it won’t really do anything to solve them.

Transactions behavior

New in Django 5.1.

SQLite supports three transaction modes:DEFERRED,IMMEDIATE, andEXCLUSIVE.

The default isDEFERRED. If you need to use a different mode, set it in theOPTIONS part of your database configuration inDATABASES, for example:

"OPTIONS":{# ..."transaction_mode":"IMMEDIATE",# ...}

To make sure your transactions wait untiltimeout before raising “Databaseis Locked”, change the transaction mode toIMMEDIATE.

For the best performance withIMMEDIATE andEXCLUSIVE, transactionsshould be as short as possible. This might be hard to guarantee for all of yourviews so the usage ofATOMIC_REQUESTS isdiscouraged in this case.

For more information seeTransactions in SQLite.

QuerySet.select_for_update() not supported

SQLite does not support theSELECT...FORUPDATE syntax. Calling it willhave no effect.

Isolation when usingQuerySet.iterator()

There are special considerations described inIsolation In SQLite whenmodifying a table while iterating over it usingQuerySet.iterator(). Ifa row is added, changed, or deleted within the loop, then that row may or maynot appear, or may appear twice, in subsequent results fetched from theiterator. Your code must handle this.

Enabling JSON1 extension on SQLite

To useJSONField on SQLite, you need to enable theJSON1 extension on Python’ssqlite3 library. If the extension isnot enabled on your installation, a system error (fields.E180) will beraised.

To enable the JSON1 extension you can follow the instruction onthe wiki page.

Note

The JSON1 extension is enabled by default on SQLite 3.38+.

Setting pragma options

New in Django 5.1.

Pragma options can be set upon connection by using theinit_command intheOPTIONS part of your database configuration inDATABASES. The example below shows how to enable extra durability ofsynchronous writes and change thecache_size:

DATABASES={"default":{"ENGINE":"django.db.backends.sqlite3",# ..."OPTIONS":{"init_command":"PRAGMA synchronous=3; PRAGMA cache_size=2000;",},}}

Oracle notes

Django supportsOracle Database Server versions 19c and higher. Version1.3.2 through 3.3.0 of theoracledb Python driver is required.

Deprecated since version 5.0:Support forcx_Oracle is deprecated.

In order for thepythonmanage.pymigrate command to work, your Oracledatabase user must have privileges to run the following commands:

  • CREATE TABLE

  • CREATE SEQUENCE

  • CREATE PROCEDURE

  • CREATE TRIGGER

To run a project’s test suite, the user usually needs theseadditionalprivileges:

  • CREATE USER

  • ALTER USER

  • DROP USER

  • CREATE TABLESPACE

  • DROP TABLESPACE

  • CREATE SESSION WITH ADMIN OPTION

  • CREATE TABLE WITH ADMIN OPTION

  • CREATE SEQUENCE WITH ADMIN OPTION

  • CREATE PROCEDURE WITH ADMIN OPTION

  • CREATE TRIGGER WITH ADMIN OPTION

While theRESOURCE role has the requiredCREATETABLE,CREATESEQUENCE,CREATEPROCEDURE, andCREATETRIGGER privileges,and a user grantedRESOURCEWITHADMINOPTION can grantRESOURCE, sucha user cannot grant the individual privileges (e.g.CREATETABLE), and thusRESOURCEWITHADMINOPTION is not usually sufficient for running tests.

Some test suites also create views or materialized views; to run these, theuser also needsCREATEVIEWWITHADMINOPTION andCREATEMATERIALIZEDVIEWWITHADMINOPTION privileges. In particular, thisis needed for Django’s own test suite.

All of these privileges are included in the DBA role, which is appropriatefor use on a private developer’s database.

The Oracle database backend uses theSYS.DBMS_LOB andSYS.DBMS_RANDOMpackages, so your user will require execute permissions on it. It’s normallyaccessible to all users by default, but in case it is not, you’ll need to grantpermissions like so:

GRANTEXECUTEONSYS.DBMS_LOBTOuser;GRANTEXECUTEONSYS.DBMS_RANDOMTOuser;

Connecting to the database

To connect using the service name of your Oracle database, yoursettings.pyfile should look something like this:

DATABASES={"default":{"ENGINE":"django.db.backends.oracle","NAME":"xe","USER":"a_user","PASSWORD":"a_password","HOST":"","PORT":"",}}

In this case, you should leave bothHOST andPORT empty.However, if you don’t use atnsnames.ora file or a similar naming methodand want to connect using the SID (“xe” in this example), then fill in bothHOST andPORT like so:

DATABASES={"default":{"ENGINE":"django.db.backends.oracle","NAME":"xe","USER":"a_user","PASSWORD":"a_password","HOST":"dbprod01ned.mycompany.com","PORT":"1540",}}

You should either supply bothHOST andPORT, or leaveboth as empty strings. Django will use a different connect descriptor dependingon that choice.

Full DSN and Easy Connect

A Full DSN or Easy Connect string can be used inNAME if bothHOST andPORT are empty. This format is required whenusing RAC or pluggable databases withouttnsnames.ora, for example.

Example of an Easy Connect string:

"NAME":"localhost:1521/orclpdb1"

Example of a full DSN string:

"NAME":("(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))""(CONNECT_DATA=(SERVICE_NAME=orclpdb1)))")

Threaded option

If you plan to run Django in a multithreaded environment (e.g. Apache using thedefault MPM module on any modern operating system), then youmust setthethreaded option of your Oracle database configuration toTrue:

"OPTIONS":{"threaded":True,}

Failure to do this may result in crashes and other odd behavior.

INSERT … RETURNING INTO

By default, the Oracle backend uses aRETURNINGINTO clause to efficientlyretrieve the value of anAutoField when inserting new rows. This behaviormay result in aDatabaseError in certain unusual setups, such as wheninserting into a remote table, or into a view with anINSTEADOF trigger.TheRETURNINGINTO clause can be disabled by setting theuse_returning_into option of the database configuration toFalse:

"OPTIONS":{"use_returning_into":False,}

In this case, the Oracle backend will use a separateSELECT query toretrieveAutoField values.

Naming issues

Oracle imposes a name length limit of 30 characters. To accommodate this, thebackend truncates database identifiers to fit, replacing the final fourcharacters of the truncated name with a repeatable MD5 hash value.Additionally, the backend turns database identifiers to all-uppercase.

To prevent these transformations (this is usually required only when dealingwith legacy databases or accessing tables which belong to other users), usea quoted name as the value fordb_table:

classLegacyModel(models.Model):classMeta:db_table='"name_left_in_lowercase"'classForeignModel(models.Model):classMeta:db_table='"OTHER_USER"."NAME_ONLY_SEEMS_OVER_30"'

Quoted names can also be used with Django’s other supported databasebackends; except for Oracle, however, the quotes have no effect.

When runningmigrate, anORA-06552 error may be encountered ifcertain Oracle keywords are used as the name of a model field or thevalue of adb_column option. Django quotes all identifiers usedin queries to prevent most such problems, but this error can stilloccur when an Oracle datatype is used as a column name. Inparticular, take care to avoid using the namesdate,timestamp,number orfloat as a field name.

NULL and empty strings

Django generally prefers to use the empty string ('') rather thanNULL, but Oracle treats both identically. To get around this, theOracle backend ignores an explicitnull option on fields thathave the empty string as a possible value and generates DDL as ifnull=True. When fetching from the database, it is assumed thataNULL value in one of these fields really means the emptystring, and the data is silently converted to reflect this assumption.

TextField limitations

The Oracle backend storesTextFields asNCLOB columns. Oracle imposessome limitations on the usage of such LOB columns in general:

  • LOB columns may not be used as primary keys.

  • LOB columns may not be used in indexes.

  • LOB columns may not be used in aSELECTDISTINCT list. This means thatattempting to use theQuerySet.distinct method on a model thatincludesTextField columns will result in anORA-00932 error whenrun against Oracle. As a workaround, use theQuerySet.defer method inconjunction withdistinct() to preventTextField columns from beingincluded in theSELECTDISTINCT list.

Subclassing the built-in database backends

Django comes with built-in database backends. You may subclass an existingdatabase backends to modify its behavior, features, or configuration.

Consider, for example, that you need to change a single database feature.First, you have to create a new directory with abase module in it. Forexample:

mysite/    ...    mydbengine/        __init__.py        base.py

Thebase.py module must contain a class namedDatabaseWrapper thatsubclasses an existing engine from thedjango.db.backends module. Here’s anexample of subclassing the PostgreSQL engine to change a feature classallows_group_by_selected_pks_on_model:

mysite/mydbengine/base.py
fromdjango.db.backends.postgresqlimportbase,featuresclassDatabaseFeatures(features.DatabaseFeatures):defallows_group_by_selected_pks_on_model(self,model):returnTrueclassDatabaseWrapper(base.DatabaseWrapper):features_class=DatabaseFeatures

Finally, you must specify aDATABASE-ENGINE in yoursettings.pyfile:

DATABASES={"default":{"ENGINE":"mydbengine",# ...},}

You can see the current list of database engines by looking indjango/db/backends.

Using a 3rd-party database backend

In addition to the officially supported databases, there are backends providedby 3rd parties that allow you to use other databases with Django:

The Django versions and ORM features supported by these unofficial backendsvary considerably. Queries regarding the specific capabilities of theseunofficial backends, along with any support queries, should be directed tothe support channels provided by each 3rd party project.

Back to Top

Additional Information

Support Django!

Support Django!

Contents

Getting help

FAQ
Try the FAQ — it's got answers to many common questions.
Index,Module Index, orTable of Contents
Handy when looking for specific information.
Django Discord Server
Join the Django Discord Community.
Official Django Forum
Join the community on the Django Forum.
Ticket tracker
Report bugs with Django or Django documentation in our ticket tracker.

Download:

Offline (Django 5.1):HTML |PDF |ePub
Provided byRead the Docs.

Diamond and Platinum Members

Sentry
JetBrains

[8]ページ先頭

©2009-2025 Movatter.jp