Sqlalchemy返回“过时"行?

编程入门 行业动态 更新时间:2024-10-28 10:22:44
本文介绍了Sqlalchemy返回“过时"行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个表(MySQL),其中有一行.

I have a table (MySQL) with a row in it.

我可以用

self._session.query(Automatic).\ filter(Automatic.do_when <= time()).\ limit(limit).\ all()

但是,如果我然后从表中删除该行(使用mysql客户端或phpMyAdmin),则该行仍由上面的代码返回.我不知道这是否与问题"如何禁用SQLAlchemy缓存?".

However, if I then delete the row from table (with the mysql client or phpMyAdmin), the row is still returned by the code above. I don't know if this is related to the question "How to disable SQLAlchemy caching?".

添加

self._sessionmit()

之后没什么区别.

推荐答案

根据 eggyal的解释.

self._sessionmit() self._session.query(Automatic).\ filter(Automatic.do_when <= time()).\ limit(limit).\ all()

更多推荐

Sqlalchemy返回“过时"行?

本文发布于:2023-10-24 07:29:36,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1523326.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Sqlalchemy   quot

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!