Hibernate Interview Questions – Part 3
Hibernate Interview Questions – Part 3 Hibernate Interview Questions – Part 1 – Part 2 Explain One – to – One Mapping: Example: Consider we have 2 tables, Employee and…
Learn Together
Hibernate Interview Questions – Part 3 Hibernate Interview Questions – Part 1 – Part 2 Explain One – to – One Mapping: Example: Consider we have 2 tables, Employee and…
Hibernate Interview Questions – Part 1 (Hibernate Interview Questions Part 2) What is Hibernate? It is a open source and light weight ORM tool It is used to store, retrieve…
Hibernate Database Operations – FirstResult and MaxResult In this article we are going to see FirstResult and MaxResult in hibernate. FirstResult – Suppose if we like to retrieve records from database…
Criteria Queries Implementation – Hibernate Hibernate provides org.hibernate.criteria interface to create Criteria Queries. Consider an example, We have an entity class named “Employee” then our criteria query will look like,…
CRUD Operations in Hibernate So far we have seen Joined class, table per hierarchy and Mappings (OneToOne, OneToMany, ManyToMany) Now let us see the CRUD Operations (Create, Read, Update and Delete)…