django-orm:如何将元素插入特定数据库的 table
django-orm : How can I insert element to a table of a particular database
我在 setting.py 中有 2 个不同的数据库。
要执行 select 操作,我使用以下语句并且工作正常:
all_data = Bugs.objects.using('database_one').filter(reporter=user_id, bug_status='resolved', resolution__in=all_resolutions)[:2]
但是我如何传递数据库值以在同一数据库的 table 中插入一个条目。
我试过了,但这似乎不起作用:
row_to_be_added = TableName(pr=pr, case=case, comments=comments).using('bugzilla').save()
谁能帮帮我。
来自docs:
row_to_be_added = TableName(pr=pr, case=case, comments=comments).save(using='bugzilla')
我在 setting.py 中有 2 个不同的数据库。 要执行 select 操作,我使用以下语句并且工作正常:
all_data = Bugs.objects.using('database_one').filter(reporter=user_id, bug_status='resolved', resolution__in=all_resolutions)[:2]
但是我如何传递数据库值以在同一数据库的 table 中插入一个条目。
我试过了,但这似乎不起作用:
row_to_be_added = TableName(pr=pr, case=case, comments=comments).using('bugzilla').save()
谁能帮帮我。
来自docs:
row_to_be_added = TableName(pr=pr, case=case, comments=comments).save(using='bugzilla')