Using the Thin Driver to Connect to an Oracle Database

Follow the steps below to connect a Java application to an Oracle database using Thin Driver. Download Oracle JDBC DriverLoad…

3 years ago

Java connect to MySQL database with JDBC

Follow the steps below to connect a Java application to a MySQL database using the JDBC Driver. Download JDBC driver…

3 years ago

Java Database Connectivity

To connect any Java application to a database using JDBC, follow these five steps. These are the steps to take:…

3 years ago

JDBC API(java.sql Package)

The Java Database Connectivity (JDBC) API allows Java programmers to access data from any database. You can use the JDBC…

3 years ago

What is JDBC?

JDBC (Java Database Connectivity) is the Java API for connecting to a database, issuing queries and commands, and handling database…

3 years ago

Remote Method Invocation(RMI) in Java

Remote Method Invocation (RMI) is an API that allows an object to call a method on another object in another…

3 years ago

Java.lang.Class class in Java

Java includes a class called Class in the java.lang package. In a running Java application, instances of the class Class…

3 years ago

Reflection in Java

Reflection is a runtime API for inspecting and modifying the behavior of methods, classes, and interfaces. The classes required for…

3 years ago

Character class in Java

In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…

3 years ago

Boolean class in Java

In java.lang package, there is a wrapper class Boolean. A value of the primitive type boolean is wrapped in an…

3 years ago