Please send that collection to iq@GlobalGuideline.Com along with the category and sub category information
1 :: What is Hibernate?
Hibernate is a pure Java object-relational mapping (ORM) and persistence framework that allows you to map plain old Java objects to relational database tables using (XML) configuration files.Its purpose is to relieve the developer from a significant amount of relational data persistence-related programming tasks.2 :: What is ORM?
ORM stands for Object/Relational mapping. It is the programmed and translucent perseverance of objects in a Java application in to the tables of a relational database using the metadata that describes the mapping between the objects and the database. It works by transforming the data from one representation to another.3 :: What does an ORM solution comprises of?
It should have an API for performing basic CRUD (Create, Read, Update, Delete) operations on objects of persistent classes Should have a language or an API for specifying queries that refer to the classes and the properties of classes An ability for specifying mapping metadata It should have a technique for ORM implementation to interact with transactional objects to perform dirty checking, lazy association fetching, and other optimization functions4 :: What are the different levels of ORM quality?
There are four levels defined for ORM quality.Pure relational
object mapping
Medium object mapping
Full object mapping
5 :: What is a pure relational ORM?
The entire application, including the user interface, is designed around the relational model and SQL-based relational operations.



Webmaster Said:
Thank you.