Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Hibernate Interview Questions and Answers

Test your skills through the online practice test: Hibernate Quiz Online Practice Test

Related differences

Ques 51. What are the ORM level?

The ORM levels are:

* Pure relational (stored procedure.)
* Light objects mapping (JDBC)
* Medium object mapping
* Full object Mapping (composition,inheritance, polymorphism, persistence by reachability)

Is it helpful? Add Comment View Comments
 

Ques 52. What is CRUD?

A CRUD operation deals with creating , retriving , updating and deleting from the table.

We have already described previously how to persist "Employee" Class to database. Here we are adding more operation on that

Employee Class.
  1. Creating/Persisting the class to databae
  2. Retriving records from database
  3. Updating decord(Condition : Where sal is 8000 ,update sal to 11000)
  4. Deleting decord (condition: where deptno is 30)

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook
Hibernate 3 vs Hibernate 4JDBC vs HibernateJPA vs Hibernate