Bulk Operations

Bulk Operations

In General, in Hibernate Applications, by using org.hibernate.Session interface provided methods like save(), update(), saveOrUpdate(), delete(), get(), etc. we are able to perform manipulations over single record.

In Hibernate applications, if we want to perform manipulations over multiple records then we must use the following features provided by Hibernate.

  1. HQL[Hibernate Query Language]
  2. Native SQL
  3. Criteria API

Bulk Operations
Scroll to top