2016-10-10 56 views
0

我在setting.py中有2個不同的數據庫。 要我用以下語句,並工作正常選擇操作:django-orm:如何將元素插入到特定數據庫的表中

all_data = Bugs.objects.using('database_one').filter(reporter=user_id, bug_status='resolved', resolution__in=all_resolutions)[:2] 

但我怎麼能傳遞價值數據庫中插入同一個數據庫中的一個表項。

我嘗試這樣做,但這似乎並不奏效:

row_to_be_added = TableName(pr=pr, case=case, comments=comments).using('bugzilla').save() 

任何人都可以請幫我在這裏。

回答

0

docs

row_to_be_added = TableName(pr=pr, case=case, comments=comments).save(using='bugzilla') 
相關問題