Changeset 7949
- Timestamp:
- 07/18/08 12:38:53 (1 year ago)
- Files:
-
- django/trunk/django/db/backends/mysql_old/base.py (deleted)
- django/trunk/django/db/backends/mysql_old/client.py (deleted)
- django/trunk/django/db/backends/mysql_old/creation.py (deleted)
- django/trunk/django/db/backends/mysql_old/__init__.py (deleted)
- django/trunk/django/db/backends/mysql_old/introspection.py (deleted)
- django/trunk/django/test/utils.py (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (3 diffs)
- django/trunk/tests/modeltests/fixtures/models.py (modified) (1 diff)
- django/trunk/tests/modeltests/lookup/models.py (modified) (1 diff)
- django/trunk/tests/modeltests/transactions/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/test/utils.py
r7940 r7949 141 141 'postgresql_psycopg2': get_postgresql_create_suffix, 142 142 'mysql': get_mysql_create_suffix, 143 'mysql_old': get_mysql_create_suffix,144 143 }.get(settings.DATABASE_ENGINE, lambda: '')() 145 144 if settings.TEST_DATABASE_NAME: django/trunk/docs/settings.txt
r7859 r7949 279 279 280 280 The database backend to use. The build-in database backends are 281 ``'postgresql_psycopg2'``, ``'postgresql'``, ``'mysql'``, ``' mysql_old'``,282 ``' sqlite3'``, and ``'oracle'``.281 ``'postgresql_psycopg2'``, ``'postgresql'``, ``'mysql'``, ``'sqlite3'``, and 282 ``'oracle'``. 283 283 284 284 In the Django development version, you can use a database backend that doesn't … … 1030 1030 backend-specific. 1031 1031 1032 Supported for the PostgreSQL_ (``postgresql``, ``postgresql_psycopg2``) and MySQL_ (``mysql`` , ``mysql_old``) backends.1032 Supported for the PostgreSQL_ (``postgresql``, ``postgresql_psycopg2``) and MySQL_ (``mysql``) backends. 1033 1033 1034 1034 .. _PostgreSQL: http://www.postgresql.org/docs/8.2/static/multibyte.html … … 1045 1045 passed directly to the backend, so its format is backend-specific. 1046 1046 1047 Only supported for ``mysql`` and ``mysql_old`` backends (see `section 10.3.2`_1048 of the MySQLmanual for details).1047 Only supported for the ``mysql`` backend (see `section 10.3.2`_ of the MySQL 1048 manual for details). 1049 1049 1050 1050 .. _section 10.3.2: http://www.mysql.org/doc/refman/5.0/en/charset-database.html django/trunk/tests/modeltests/fixtures/models.py
r6355 r7949 59 59 # Database flushing does not work on MySQL with the default storage engine 60 60 # because it requires transaction support. 61 if settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):61 if settings.DATABASE_ENGINE != 'mysql': 62 62 __test__['API_TESTS'] += \ 63 63 """ django/trunk/tests/modeltests/lookup/models.py
r7477 r7949 381 381 382 382 383 if settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):383 if settings.DATABASE_ENGINE != 'mysql': 384 384 __test__['API_TESTS'] += r""" 385 385 # grouping and backreferences django/trunk/tests/modeltests/transactions/models.py
r7477 r7949 26 26 building_docs = getattr(settings, 'BUILDING_DOCS', False) 27 27 28 if building_docs or settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):28 if building_docs or settings.DATABASE_ENGINE != 'mysql': 29 29 __test__['API_TESTS'] += """ 30 30 # the default behavior is to autocommit after each save() action
