Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Django support 4 tipe of Database engine:</p> <ul> <li>PostgreSQL (<a href="http://www.postgresql.org/" rel="nofollow">http://www.postgresql.org/</a>)</li> <li>SQLite 3 (<a href="http://www.sqlite.org/" rel="nofollow">http://www.sqlite.org/</a>)</li> <li>MySQL (<a href="http://www.mysql.com/" rel="nofollow">http://www.mysql.com/</a>)</li> <li>Oracle (<a href="http://www.oracle.com/" rel="nofollow">http://www.oracle.com/</a>)</li> </ul> <p>For the most part , all the engines listed here work just as well with the core Django framework ( the notable exception should be raised to support optional GIS Django , which is much more powerful than with other PostgreSQL database). If you're not tied to a particular legacy system and have the freedom to choose any database backend , we recommend PostgreSQL , which is based on a balance between cost, features , speed and stability.</p> <p>The setting of the database is a process that takes place in two stages:</p> <p>First, you must install and configure the database server itself. This process is beyond the scope of this book, but each of the four databases listed here have extensive documentation on its website . ( If you are on a shared hosting , it is very likely that your provider has already set all this for you ) . Secondly, you need to install the Python library for your particular database backend. This is done through third-party code that allows Python to interact with the database.</p> <p>If you're just playing with Django and do not want to install a database server, consider using SQLite. SQLite is unique in the list of supported databases that does not require either of the two previous steps. It merely read and write data to a single file on the filesystem and Python versions from 2.5 support it NATIVELY.</p> <p>Yes I confirm SQL LITE that is supported NATIVELY from 2.5 version PHYTON.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload