What is Bootstrap, Extension and System Class loader in Java?

What is Bootstrap, Extension and System Class loader in Java?

The Bootstrap class loader loads key Java classes. Bootstrap class loader loads the basic classes from Java library, like java.*, javax.*. This is the root in the class loader hierarchy.

The Extension class loader loads the classes from the JRE’s extension directories, such lib/ext directories

The System class loader loads the classes from the system class path, which are set by the CLASSPATH environment variable.
Define JDBC
Define JDBC - The JDBC API defines interfaces and classes for making database connections. Using JDBC, you can send SQL....
Describe JDBC Architecture in brief.
Describe JDBC Architecture in brief. - Java application calls the JDBC library that loads a driver which talks to the database....
Define ResultSet
Define ResultSet - ResultSet provides access to the rows of table. A ResultSet maintains a cursor pointing to its current row of data.......
Post your comment