如何在休眠条件中编写insertinto命令
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,你做不到。
根据 Hibernate 文档
http://docs。 jboss.org/hibernate/core/3.6/reference/en-US/html_single/#batch-direct
所以你只需要创建对象并使用 Hibernate 保存它,它应该看起来像这样
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
So you just need to create Object and save it using Hibernate and it should look something like that
您应该将查询字段映射到 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/