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.
- Creating/Persisting the class to databae
- Retriving records from database
- Updating decord(Condition : Where sal is 8000 ,update sal to 11000)
- Deleting decord (condition: where deptno is 30)
Is it helpful?
Add Comment
View Comments
Most helpful rated by users:
- What is Hibernate?
- What is ORM?
- What does an ORM solution comprises of?
- What are the different levels of ORM quality?
- What the Core interfaces are of hibernate framework?