Re: How to create the model in a different database from within the same database server.

2010-06-16 Thread thusjanthan
Django 1.2 I have the following setup: ProjectA settings.py: ... DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': 'test_database', # Or path to database f

Re: How to create the model in a different database from within the same database server.

2010-06-16 Thread Nick
Which version of django are you working with? On Jun 16, 2:28 pm, thusjanthan wrote: > Hi, > > when I mean database I mean the separate databases from within one > mysql database server. So ex: > > DB server: server.example.com > Databases that are contained in the one instance of mysql: > People

How to create the model in a different database from within the same database server.

2010-06-16 Thread thusjanthan
Hi, when I mean database I mean the separate databases from within one mysql database server. So ex: DB server: server.example.com Databases that are contained in the one instance of mysql: People Books I have made the connection in the settings.py at the project level but in the individual appl