如何在休眠条件中编写insertinto命令

发布于 2024-11-13 07:14:01 字数 235 浏览 2 评论 0原文

我想在 Hibernate Criteria 中编写以下 InsertInto 查询。 任何建议 .. 谢谢你的帮助

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

I want to write the below InsertInto query in Hibernate Criteria.
Any Suggestions
..
thanks for help

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青萝楚歌 2024-11-20 07:14:01

不幸的是,你做不到。

根据 Hibernate 文档

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

只有 INSERT INTO ... SELECT ...
支持表格;不是插入
... 价值观 ... 形式。

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

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

Unfortunately, You can't do it.

According to Hibernate documentation

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.

So you just need to create Object and save it using Hibernate and it should look something like that

Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
Resume selectedresumes  = new Resume();
//set all resume values
session.save(selectedresumes);
tx.commit();
session.close();
叹梦 2024-11-20 07:14:01

您应该将查询字段映射到 pojo 类,而不是 SQL 或 MySQL 数据库表。

就像下面的 Employee pojo 对象有两个字段 empNo、empName 来插入,如下所示。
查询 query = session.createQuery("插入 Employee(empNo, empName)");

int 结果 = query.executeUpdate();

参考这个例子

http://howtodoinjava.com/hibernate/hibernate-insert-query-教程/

You should map your query fileds with pojo class not with SQL or MySQL data base tables.

Like below Employee pojo object has two fields empNo, empName to insert write like below.
Query query = session.createQuery("insert into Employee(empNo, empName)");

int result = query.executeUpdate();

refer this example

http://howtodoinjava.com/hibernate/hibernate-insert-query-tutorial/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文