Exception in Inheritance

Case 1 : Parent class throwing any exception(checked/unchecked) a) Exception thrown in the parent class’s method is checked type. If the exception is thrown by the parent’s class method then child class’s overridden method may not be required to throw the exception (not mandatory but it can throw) class Parent{         void […]

Share this article on

JDBC vs Hibernate

JDBC stands for Java Database Connectivity which allows developers to connect, query and update a database using the Structured Query Language(SQL). Hibernate is an Object-Relational Mapping (ORM) solution for JAVA. It is a powerful, high performance ORM framework. Listed below is the difference beetween JDBC and Hibernate About the Author Raj Founder of javainsimpleway.com I […]

Share this article on
< Previous Next >