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 + "')";
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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