I would like to respect the database as read-only and never write to it. Is there a way to easily prevent synchronization even from having to check for database updates?
With Django 1.2 and the ability to have multiple databases, he would like to be able to query the database for information. I never had to write to this database.
However, I would be scared if syncdb ran and tried to update this database (because I might not have a technically readable account for this database). Basically, I just would like to use / abuse Django ORM as a way to query this database.
UPDATE: Sorry, I need to be able to synchronize one of the databases in settings.py, and not just this particular one.
source
share