Posts

Showing posts with the label JDBC Driver Manager

Introduction to JDBC (Java Database Connectivity)

Image
JDBC stands for Java Database Connectivity. JDBC is a Java API to connect and execute the query with the database. It is a specific from Sun Microsystem that provide a standard abstraction(API or Protocol) Java Database Connectivity (JDBC) is an application programming interface (API) which defines how a client may access a database. JDBC is like a bridge between a Java application and a database. for Java application to communicate with various databases. It provides the language with Java database connectivity standards, It is used to write programs required to access databases. JDBC, along with the database driver, can access databases and spreadsheets. The enterprise data stored in a relational database(RDB) can be accessed with the help of JDBC APIs. Definition of JDBC (Java Database Connectivity) JDBC is an API(Application Programming interface) used in Java programing to interact with database. The classes and interface of JDBC allow the application to send requests made by user...