> > Do I have to bite the bullet and merge the databases , views files, >> > settings etc etc? > > (message got stuck in drafts so replying a little late...)
As Django is currently not able to deal with multiple databases [1], yes, you will have to merge all data into one database. Views are part of an app, and you wouldn't have to update those, apart from some url-lookups maybe. Your settings.py and urls.py will have to be update to resp. reflect the changes in db-connections en template location, and put all apps under the correct url. [1] http://code.djangoproject.com/wiki/MultipleDatabaseSupport TiNo <http://code.djangoproject.com/wiki/MultipleDatabaseSupport> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

