Django: Getting data from different database

后端 未结 2 1249
孤独总比滥情好
孤独总比滥情好 2021-02-07 18:03

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

2条回答
  •  灰色年华
    2021-02-07 18:14

    sure, you just have to use

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

    to do your queries

提交回复
热议问题