我正在使用SQLAlchemy的provided contextmanager
为我处理会话。我不明白的是如何获取自动生成的ID,因为(1)直到调用commit()
之后才创建ID(2)新创建的实例仅在上下文管理器中可用&# 39;范围:
def save_soft_file(name, is_geo=False):
with session_scope() as session:
soft_file = models.SoftFile(name=name, is_geo=is_geo)
session.add(soft_file)
# id is not available here, because the session has not been committed
# soft_file is not available here, because the session is out of context
return soft_file.id
我错过了什么?
答案 0 :(得分:2)
使用session.flush()
在当前事务中执行挂起命令。
def save_soft_file(name, is_geo=False):
with session_scope() as session:
soft_file = models.SoftFile(name=name, is_geo=is_geo)
session.add(soft_file)
session.flush()
return soft_file.id
如果在flush
之后但在会话超出范围之前发生异常,则更改将回滚到事务的开头。在这种情况下,您的soft_file
实际上不会写入数据库,即使它已被赋予ID。