Is it possible to use Django with an existing database, Microsoft SQL in my case, that is really huge and complex and in addition must not be changed in any way by Django?
I already read this, but it does not seem to solve my problem; it says manage.py migrate will add some tables to the database, which must not happen.
I also found this, which might not work, because it still needs to use the migration on every DB: https://docs.djangoproject.com/en/1.10/topics/db/multi-db/
My user stories are:
- I want to view the customer data from the existing database in my browser (SQL select)
- I want to write a visit report (SQL insert)
Beyond that, the database must not be changed.
Is that possible with Django? Is Django even the right tool for the job? Is it possible to have a Django-specific database and a different database from which it will only select/insert?