Java

Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.

Java is an object oriented programming language developed by Sun Microsystems in 1995.

Learn more about Java evolution

JDBC - Java Database Connectivity

JDBC API: As part of Java 2 Standard Edition (J2SE), an API is provided to access the data managed by database servers like ORACLE, MySQL, Microsoft SQL Server, DB2, Sybase, etc. The name of the API i...

Different types of JDBC drivers

Type I driverODBC (Open Database Connectivity) is a C language API. It is a specification provided by Microsoft and can be implemented by any company. The implementoers of this API provides the dll fi...

JDBC transactions

Let's consider that we're working on a program which works on two tables STUDENT, STUDENT_ADDRESS. A student should definitely have an address associated. So, we should insert both STUDENT table recor...

Get packages info using java.lang.Package

I've posted important core Java packages previously. You can read that post here. This post is more about getting all the available packages information from JVM. I've developed a small program which ...

Creating a database table from Java

Here the sample program which will demonstrate creating a table in Oracle. Note, table will be dropped at the end of the program. Just observe the program now and I'll explain the program in detailsTa...