JDBC Tutorials

JDBC stands for Java DataBase Connectivity. It is an API for interacting with the databases using SQL( Structured Query Language ). We can retrieve, insert, delete and update data using Java code.

JDBC API is a collection of classes, interfaces, and other object-oriented artifacts grouped in JDBC packages.

JDBC API

 

Java Application with JDBC API can access any database with a suitable JDBC Driver for the database. We can access and manipulate data in Oracle, MySQL, MS SQL Server, MS Access, DB2, etc.

JDBC API

https://www.testingdocs.com/jdbc-java-database-connectivity-api/

JDBC Architecture

https://www.testingdocs.com/jdbc-architecture/

JDBC Drivers

https://www.testingdocs.com/types-of-jdbc-drivers/

DriverManager

https://www.testingdocs.com/jdbc-drivermanager-class/

ResultSet

https://www.testingdocs.com/jdbc-resultset-interface/

Connect To Database

https://www.testingdocs.com/connect-to-oracle-database-using-jdbc-thin-driver/

 

Display a Database Table

https://www.testingdocs.com/display-data-from-oracle-database-table-using-jdbc/