diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index 0ee4113..52994ed 100644
|
a
|
b
|
sure a database server is running. Django supports many different database
|
| 82 | 82 | servers and is officially supported with PostgreSQL_, MySQL_, Oracle_ and |
| 83 | 83 | SQLite_. |
| 84 | 84 | |
| 85 | | It is common practice to use SQLite in a desktop development environment. |
| 86 | | Unless you need database feature parity between your desktop development |
| 87 | | environment and your deployment environment, using SQLite for development is |
| 88 | | generally the simplest option as it doesn't require running a separate server. |
| | 85 | If you are developing a simple project or something you don't plan to deploy |
| | 86 | in a production environment, SQLite is generally the simplest option as it |
| | 87 | doesn't require running a separate server. However, SQLite has many differences |
| | 88 | from other databases, so if you are working on something substantial, it's |
| | 89 | recommended to develop with the same database as you plan on using in |
| | 90 | production. |
| 89 | 91 | |
| 90 | 92 | In addition to the officially supported databases, there are backends provided |
| 91 | 93 | by 3rd parties that allow you to use other databases with Django: |