Changeset 148
- Timestamp:
- 07/17/05 10:53:56 (3 years ago)
- Files:
-
- django/trunk/docs/install.txt (modified) (2 diffs)
- django/trunk/docs/overview.txt (modified) (1 diff)
- django/trunk/docs/tutorial01.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/install.txt
r111 r148 30 30 (recommended) or MySQL_. 31 31 32 Note that MySQL support is a recent development, and Django hasn't been 33 comprehensively tested with that database. If you find any bugs in Django's 34 MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 35 immediately. 36 37 32 38 Additionally, you'll need to make sure your Python database bindings are 33 39 installed. If you're using PostgreSQL, you'll need the psycopg_ … … 37 43 .. _PostgreSQL: http://www.postgresql.org/ 38 44 .. _MySQL: http://www.mysql.com/ 45 .. _`Django's ticket system: http://code.djangoproject.com/report/1 39 46 .. _psycopg: http://initd.org/projects/psycopg1 40 47 .. _MySQLdb: http://sourceforge.net/projects/mysql-python django/trunk/docs/overview.txt
r115 r148 45 45 Next, run the Django command-line utility. It'll create the database tables for 46 46 you automatically, in the database specified in your Django settings. Django 47 works with PostgreSQL and MySQL, although other database adapters are on the48 way::47 works best with PostgreSQL, although we've recently added beta MySQL 48 support and other database adapters are on the way:: 49 49 50 50 django-admin.py install news django/trunk/docs/tutorial01.txt
r146 r148 61 61 interactive prompt.) 62 62 63 Also, note that MySQL support is a recent development, and Django hasn't been 64 comprehensively tested with that database. If you find any bugs in Django's 65 MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 66 immediately. 67 63 68 Once you've done that, you need to tell Django which settings module you're 64 69 currently using. Do that by setting an environment variable, … … 89 94 90 95 .. _`Python path`: http://docs.python.org/tut/node8.html#SECTION008110000000000000000 96 .. _`Django's ticket system: http://code.djangoproject.com/report/1 91 97 92 98 Creating models
