Author: Rabecca Fatima
-
JavaCharacter class in Java
In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…
August 27, 2022
-
JavaReflection in Java
Reflection is a runtime API for inspecting and modifying the behavior of methods, classes, and interfaces. The classes required for…
August 29, 2022
-
JavaJava.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…
August 29, 2022
-
JavaRemote 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…
August 31, 2022
-
JavaWhat is JDBC?
JDBC (Java Database Connectivity) is the Java API for connecting to a database, issuing queries and commands, and handling database…
September 1, 2022
-
JavaJDBC API(java.sql Package)
The Java Database Connectivity (JDBC) API allows Java programmers to access data from any database. You can use the JDBC…
September 2, 2022
-
JavaJava Database Connectivity
To connect any Java application to a database using JDBC, follow these five steps. These are the steps to take:…
September 2, 2022
-
JavaJava 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…
September 4, 2022
-
JavaUsing 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 Driver…
September 5, 2022
-
JavaJava connectivity to MongoDB database
MongoDB is a no-SQL database that is document-oriented. MongoDB, which was first released in 2009, successfully replaced rows and columns…
September 5, 2022
-
JavaInner class in Java
In Java, an inner class is a class that is declared within another class or interface. To summarize, the same…
September 6, 2022
-
JavaFile class in Java
The File class represents a file or directory path name in Java. Because file and directory names differ between platforms, naming them with a simple string is insufficient. The File class is used to create files and directories, search for files, delete files, and so on. Fields of File Class…
September 7, 2022