gpt4 book ai didi

hibernate - 如何在 hibernate 条件中编写insertinto命令

转载 作者:行者123 更新时间:2023-12-02 22:21:17 24 4
gpt4 key购买 nike

我想在 Hibernate Criteria 中编写以下 InsertInto 查询。有什么建议 ..感谢您的帮助

        sql = "insert into selectedresumes  values('" + companyId + "','"
+ resumeId + "','" + resumeStatusId + "','" + jobId + "')";

最佳答案

不幸的是,你做不到。

根据Hibernate文档

http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/#batch-direct

Only the INSERT INTO ... SELECT ... form is supported; not the INSERT INTO ... VALUES ... form.

所以你只需要创建对象并使用 Hibernate 保存它,它应该看起来像这样

Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
Resume selectedresumes = new Resume();
//set all resume values
session.save(selectedresumes);
tx.commit();
session.close();

关于hibernate - 如何在 hibernate 条件中编写insertinto命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6241410/

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