Changeset 5032
- Timestamp:
- 04/19/07 13:56:51 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/boulder-oracle-sprint/docs/faq.txt
r4935 r5032 302 302 If you want to use Django with a database, which is probably the case, you'll 303 303 also need a database engine. PostgreSQL_ is recommended, because we're 304 PostgreSQL fans, and MySQL_ and `SQLite 3`_ are also supported.304 PostgreSQL fans, and MySQL_, `SQLite 3`_, and Oracle_ are also supported. 305 305 306 306 .. _Python: http://www.python.org/ … … 311 311 .. _MySQL: http://www.mysql.com/ 312 312 .. _`SQLite 3`: http://www.sqlite.org/ 313 .. _Oracle: http://www.oracle.com/ 313 314 314 315 Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5? django/branches/boulder-oracle-sprint/docs/install.txt
r5014 r5032 63 63 * If you're using SQLite, you'll need pysqlite_. Use version 2.0.3 or higher. 64 64 65 * If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher. 66 65 67 .. _PostgreSQL: http://www.postgresql.org/ 66 68 .. _MySQL: http://www.mysql.com/ … … 72 74 .. _pysqlite: http://initd.org/tracker/pysqlite 73 75 .. _MySQL backend: ../databases/ 76 .. _cx_Oracle: http://www.python.net/crew/atuining/cx_Oracle/ 74 77 75 78 Remove any old versions of Django django/branches/boulder-oracle-sprint/docs/settings.txt
r4842 r5032 246 246 247 247 Which database backend to use. Either ``'postgresql_psycopg2'``, 248 ``'postgresql'``, ``'mysql'``, ``'mysql_old'``, ``'sqlite3'`` or249 ``' ado_mssql'``.248 ``'postgresql'``, ``'mysql'``, ``'mysql_old'``, ``'sqlite3'``, 249 ``'oracle'``, or ``'ado_mssql'``. 250 250 251 251 DATABASE_HOST
