[Fixed]-Django: Getting data from different database

22πŸ‘

βœ…

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()

4πŸ‘

sure, you just have to use

SomeObject.objects.using('database_name').all()

to do your queries

Leave a comment