Django:当涉及的 2 个表位于不同的数据库中时,涉及 FK 的对象创建仍然有效吗?

发布于 2024-10-28 01:40:03 字数 359 浏览 4 评论 0原文

我有一个 Django 模型:

class Note(models.Model) : 
    text = models.TextField() 
    owner = models.ForeignKey(User) 

如果 NoteUser 位于不同的数据库上, 以下还有效吗?

note = Note(text='hello world', owner=request.user) 

我知道 join 不能跨数据库工作,但可以 像上面那样使用 FK 创建对象实例仍然有效吗?

谢谢。

I have a Django model:

class Note(models.Model) : 
    text = models.TextField() 
    owner = models.ForeignKey(User) 

If Note and User are located on different databases, would the
following still work?

note = Note(text='hello world', owner=request.user) 

I understand that join will not work across databases, but will
creating object instances using FK like above still work?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小苏打饼 2024-11-04 01:40:03

Django 不支持跨数据库关系,如其文档中所述: http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations

所以不,你的代码片段将不起作用。

Django does not support cross-database relations, as stated in their documentation: http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations

So no, your snippet won't work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文