Django

Code

Changeset 148

Show
Ignore:
Timestamp:
07/17/05 10:53:56 (3 years ago)
Author:
adrian
Message:

Added notes to documentation that MySQL support has not been comprehensively tested. Thanks, Simon!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/install.txt

    r111 r148  
    3030(recommended) or MySQL_. 
    3131 
     32Note that MySQL support is a recent development, and Django hasn't been 
     33comprehensively tested with that database. If you find any bugs in Django's 
     34MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 
     35immediately. 
     36 
     37 
    3238Additionally, you'll need to make sure your Python database bindings are 
    3339installed. If you're using PostgreSQL, you'll need the psycopg_ 
     
    3743.. _PostgreSQL: http://www.postgresql.org/ 
    3844.. _MySQL: http://www.mysql.com/ 
     45.. _`Django's ticket system: http://code.djangoproject.com/report/1 
    3946.. _psycopg: http://initd.org/projects/psycopg1 
    4047.. _MySQLdb: http://sourceforge.net/projects/mysql-python 
  • django/trunk/docs/overview.txt

    r115 r148  
    4545Next, run the Django command-line utility. It'll create the database tables for 
    4646you automatically, in the database specified in your Django settings. Django 
    47 works with PostgreSQL and MySQL, although other database adapters are on the 
    48 way:: 
     47works best with PostgreSQL, although we've recently added beta MySQL 
     48support and other database adapters are on the way:: 
    4949 
    5050    django-admin.py install news 
  • django/trunk/docs/tutorial01.txt

    r146 r148  
    6161interactive prompt.) 
    6262 
     63Also, note that MySQL support is a recent development, and Django hasn't been 
     64comprehensively tested with that database. If you find any bugs in Django's 
     65MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 
     66immediately. 
     67 
    6368Once you've done that, you need to tell Django which settings module you're 
    6469currently using. Do that by setting an environment variable, 
     
    8994 
    9095.. _`Python path`: http://docs.python.org/tut/node8.html#SECTION008110000000000000000 
     96.. _`Django's ticket system: http://code.djangoproject.com/report/1 
    9197 
    9298Creating models