How many steps are in orm?
Answer / Rahul
Typically, an Object-Relational Mapping (ORM) process includes the following steps: 1. Configuration - Setting up the ORM framework to work with your database and objects. 2. Mapping - Defining relationships between objects and database tables using annotations or XML configurations. 3. Querying - Writing queries to retrieve or update data from the database. 4. Persistence - Saving the object state to the database.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are fetch types in hibernate?
What is entity manager in hibernate?
What’s hql?
Why session is not thread safe in hibernate?
What are the benefits of hibernatetemplate?
What is first level cache in hibernate?
What are different core interfaces of hibernate framework?
How does hibernate proxy work?
Should all the mapping files of hibernate have .hbm.xml extension to work properly?
Name some second level cache types?
What is a many-to-one association in hibernate?
Describe the method used to create an hql query and sql query?