gpt4 book ai didi

python - 分离实例错误: Instance is not bound to a Session

转载 作者:行者123 更新时间:2023-12-01 05:12:10 24 4
gpt4 key购买 nike

我看过以前遇到类似问题的人的例子,但我似乎无法弄清楚为什么我的问题不起作用,因为我使用的是同一个 session 。

这是我的代码块,它只是查询数据库以查看客户是否存在,然后在另一个插入中使用该客户。但是当我点击 transaction.commit() 行时,它就会抛出 DetachedInstanceError。这可能来自另一个方法中较早的 transaction.commit() 吗?

@view_config(route_name='create_location', renderer='templates/main.html')
def create_location(request):

#get the json data from the ajax call
data = request.json_body

session = DBSession

locationName = data["location"]
custID = data["custID"]

Customer = session.query(TCustomer).filter(TCustomer.ixCustomer==custID).one()

#create customer
Location = TLocation(sDescription=locationName, ixCustomer=Customer)
session.add(Location)
session.flush()
transaction.commit()

return Response('ok')

这是我的数据库 session :

DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))

最佳答案

Could this be from an earlier transaction.commit() in another method?

是,如果在同一请求响应周期内调用另一个方法 - 一旦事务提交,SQLAlchemy 就无法保证任何内存中的 ORM 对象仍然代表实际的 ORM 对象。数据库的状态,因此您不能只在一个事务中获取对象并将其保存回另一个事务中,而不显式地将现在分离的对象合并到新 session 中。

您通常根本不应该在代码中使用 transaction.commit() 使用 ZopeTransactionExtension 背后的想法是,它与SQLAlchemy 事务到 Pyramid 的请求-响应周期 - 请求启动时会构造一个新 session ,如果请求成功则提交,如果请求失败则回滚(即在您的 View 中引发异常)。在您的代码中,您不应该关心提交任何内容 - 只需将新对象添加到 session 中即可:

@view_config(route_name='create_location', renderer='templates/main.html')
def create_location(request):

#get the json data from the ajax call
data = request.json_body

customer = DBSession.query(Customer).filter(Customer.id==data["custID"]).one()
session.add(Location(description=data["location"], customer=customer))

return Response('ok')

(无法抗拒让代码变得更像“正常”Python 代码......匈牙利表示法是......呃......这些天不太常用......谢谢你给我怀旧的闪回:)))参见PEP 8了解详情)。

在极少数情况下,您可能希望请求的某些部分无论如何都能成功,甚至仅在发生错误时才将数据保存到数据库(将错误记录到数据库可能是一个错误)例子)。在这些情况下,您可以使用未配置 ZopeTransactionExtension 的单独 session 。您需要手动提交此类 session :

try:
do_something_which_might_fail()
except Exception as e:
session = ErrorLogSession()
session.add(SomeORMObject(message=format_exception(e))
session.commit()

进一步阅读:

  • When do I construct a Session, when do I commit it, and when do I close it? - SQLAlchemy 文档中的高级概述。 “TL;DR:作为一般规则,请将 session 的生命周期与访问和/或操作数据库数据的函数和对象分开并置于外部。”请注意,Pyramid 已经为您完成了所有 session 管理 - 从您的代码外部单独结束。

  • Databases Using SQLAlchemy - 使用 SQLAlchemy 的基本 Pyramid 应用程序。有关将一些数据保存到数据库的典型代码示例,请参阅 dev wikipage_add() 函数。

关于python - 分离实例错误: Instance <TCustomer at 0x428ddf0> is not bound to a Session,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23961871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com