JDBC Introduction
What is JDBC
JDBC (Java Database Connectivity) is uses for connect java application with database. It is Java SE technology, which is install automatically with the JDK software. JDBC is an API (Application programming interface) used to communicate Java application to database in database independent and platform independent manner. It provides classes and interfaces to connect or communicate Java application with database.
JDBC API is a Java API that can access any kind of data stored in a Relational Database. It enables Java programs to execute SQL statements. JDBC works with Java on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
Before reading JDBC you need basic knowledge of Core java and most important some topics are required like Abstract, Interface, Exception Handling, Collection Framework etc.