I want to select data from a database table that is not part of my Django project. I added the database connection info to the settings file and I can do raw sql queries against
The Django: Multiple Databases page contains good information on this topic. After you have configured your databases in settings.py, you can use .using()
to specify the database you wish to query.
Examples from the documentation:
>>> # This will run on the 'default' database.
>>> Author.objects.all()
>>> # So will this.
>>> Author.objects.using('default').all()
>>> # This will run on the 'other' database.
>>> Author.objects.using('other').all()