Sunday, 23 April 2017

4. What is ORM


1. What is ORM?
  • ORM is a new kind of persistency software..
  • Which act as bridge between java application and database to transfer the data.
  • ORM tool internally uses JDBC, JNDI, JTA.
  • ORM uses JDBC technology for perform database operations by creating a connection.
  • ORM uses JNDI to obtain database connection from connection pool.
  • ORM uses JTA for managing database transactions.
2. What are the ORM tools?
  • So many ORM tools are available in market.
    1. Hibernate - JBOSS
    2. iBatis - Apache
    3. Toplink - Oracle
    4. OJB - Object Java Bean - Apache
    5. JDO - Java Data Object - Adobe



No comments:

Post a Comment

3. Java Program to create Binary Tree