On Wed, Nov 10, 2010 at 10:06 PM, Ian Kelly <ian.g.ke...@gmail.com> wrote:
>
> Yes, here are the settings I'm using:
>
> DATABASES = {
>     'default': {
>         'ENGINE': 'django.db.backends.oracle',
>         'NAME': 'xe',
>         'USER': 'ikelly',
>         'PASSWORD': 'ikelly',
>         'OPTIONS': {'threaded': True},
>         'TEST_USER': 'django_test_default',
>         'TEST_TBLSPACE': 'django_test_default',
>         'TEST_TBLSPACE_TMP': 'django_test_default_temp',
>     },
>
>     'other': {
>         'ENGINE': 'django.db.backends.oracle',
>         'NAME': 'xe',
>         'USER': 'ikelly',
>         'PASSWORD': 'ikelly',
>         'OPTIONS': {'threaded': True},
>         'TEST_USER': 'django_test_other',
>         'TEST_TBLSPACE': 'django_test_other',
>         'TEST_TBLSPACE_TMP': 'django_test_other_temp',
>     },
> }
>
> The key is that NAME should be the same ('xe') for both entries, since
> you're really establishing two connections to the same database.  The
> TEST_USER, TEST_TBLSPACE, and TEST_TBLSPACE_TMP entries must be different,
> however.

Wow. Thanks Ian!. With these settings, plus your [1]patch for #11101
(and plus [2]r14510)
things look definitely better in the Oracle front:

  ----------------------------------------------------------------------
  Ran 2804 tests in 1935.104s

  FAILED (failures=4, errors=6, skipped=42, expected failures=2)


Will run the test suite against 1.2.X and update the [3]wiki page tomorrow.

-- 
Ramiro Morales

1. http://code.djangoproject.com/ticket/11101
2. http://code.djangoproject.com/changeset/14510
3. http://code.djangoproject.com/wiki/OracleTestSetup

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-develop...@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to