sqlalchemy 中的简单更新

发布于 2024-12-28 00:47:15 字数 455 浏览 0 评论 0原文

UserTable 是:

  • id (INT)

    id (
  • name (STR)

  • last_login (DATETIME)

last_login 网页请求 我手头有一个用户 ID,我只想将 last_login 字段更新为“现在”。

在我看来,有两种方法:

  1. 使用 db_engine 发出直接 SQL(丢失映射器)

  2. 或者先查询用户,然后更新对象

两者都工作正常,但在代码中看起来很恶心。

有人知道使用 sqlalchemy 进行无查询更新的更优雅的方法吗?还有其他 ORM 能做到这一点吗?

谢谢

UserTable is:

  • id (INT)

  • name (STR)

  • last_login (DATETIME)

Serving a web page request i have a user id in hand and I only wish to update the last_login field to 'now'.

It seems to me that there are 2 ways:

  1. issue a direct SQL using db_engine (losing the mapper)

  2. OR query the user first and then update the object

Both work fine but look quite disgusting in code.

Is anyone aware of a more elegant way of doing an update-with-no-query using sqlalchemy? Is there another ORM who has got this right?

Thanks

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

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

发布评论

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

评论(1

萤火眠眠 2025-01-04 00:47:16

假设您有一个映射器 UserTable:

DBSession.query(UserTable).filter_by(id = user_id).\
    update({"last_login":datetime.datetime.now()}, synchronize_session=False)

文档

Assuming you have a mapper UserTable in place:

DBSession.query(UserTable).filter_by(id = user_id).\
    update({"last_login":datetime.datetime.now()}, synchronize_session=False)

Additional parameters in the docs.

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