HQL overview in Hibernate

We have understood how to perform various operations like Insert,Update,delete and Select on single row of a table in Hibernate. We have different methods in Hibernate like save,get,delete and update methods to perform the same But what if we want to Select or Update or Insert all the records of a table based on some […]

Share this article on

HQL Insert,Update,Select and Delete Examples

Let us understand how to perform Insert,Update,Select and Delete operations in HQL Example: In this article,we will use Applicant and Applicant_Backup tables to perform all the above operations. Applicant_Backup table will be used to store backup data from Applicant table using HQL Insert query. Step 1 Create hibernate project Please refer Hibernate setup in eclipse […]

Share this article on
< Previous Next >