如何使用make_transient()复制SQLAlchemy映射对象?

如何使用make_transient()复制SQLAlchemy映射对象?,第1张

如何使用make_transient()复制SQLAlchemy映射对象

使对象实例成为 瞬态之后, 您必须 删除 其对象ID。如果没有对象标识,则可以将其再次添加到数据库中,数据库将为其生成新的对象标识。

if __name__ == '__main__':    # the persistent object with an identiy in the database    obj = GetOneMachineDataFromDatabase()    # make it transient    make_transient(obj)    # remove the identiy / object-id    obj._oid = None    # adding the object again generates a new identiy / object-id    _session.add(obj)    # this include a flush() and create a new primary key    _session.commit()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5631860.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存