我的django应用程序中有两个数据库。一个是默认值,另一个是次要值。当我尝试以下代码时,它总是返回默认数据库中的数据。
来自django.db导入连接
def my_custom_sql(self):
cursor = connection.cursor()
cursor.execute(" SELECT * FROM accounts_account,其中id =%s", [self.id])
row = cursor.fetchall()
返回行
我想在第二个数据库中执行查询。
答案 0 :(得分:0)
你只需要
from django.db import connections
而不是
from django.db import connection
并使用您的数据库别名,如下所示:
cursor = connections['secondry_db'].cursor()