1.

What are the advantages of ORM over JDBC?

Answer»

An ORM system has following advantages over plain JDBC

Sr.No.Advantages
1Lets business code access objects rather than DB tables.
2Hides details of SQL queries from OO logic.
3Based on JDBC 'under the hood'
4No need to deal with the database implementation.
5Entities based on business concepts rather than database structure.
6Transaction management and automatic key generation.
7Fast development of application.


Discussion

No Comment Found