如何在django db collection自定义查询中选择数据库?

时间:2017-07-24 18:02:17

标签: python mysql django database psql

我的django应用程序中有两个数据库。一个是默认值,另一个是次要值。当我尝试以下代码时,它总是返回默认数据库中的数据。

  

来自django.db导入连接

     

def my_custom_sql(self):

     

cursor = connection.cursor()

     

cursor.execute(" SELECT * FROM accounts_account,其中id =%s",   [self.id])

     

row = cursor.fetchall()

     

返回行

我想在第二个数据库中执行查询。

1 个答案:

答案 0 :(得分:0)

你只需要

from django.db import connections

而不是

from django.db import connection

并使用您的数据库别名,如下所示:

cursor = connections['secondry_db'].cursor()