---
title: "What are the JDBC API components?"  
description: "What are the JDBC API components?"  
author: "Anonymous User"  
published: 2015-05-15  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2534/what-are-the-jdbc-api-components  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What are the JDBC API components?

The java.sql package contains interfaces and classes for JDBC API.

## Interfaces:

- Connection
- Statement
- PreparedStatement
- ResultSet
- ResultSetMetaData
- DatabaseMetaData
- CallableStatement etc.

## Classes:

- DriverManager
- Blob
- Clob
- Types
- SQLException etc.

## Answers

### Answer by Anonymous User

The java.sql package contains interfaces and classes for JDBC API.

## Interfaces:

- Connection
- Statement
- PreparedStatement
- ResultSet
- ResultSetMetaData
- DatabaseMetaData
- CallableStatement etc.

## Classes:

- DriverManager
- Blob
- Clob
- Types
- SQLException etc.


---

Original Source: https://www.mindstick.com/interview/2534/what-are-the-jdbc-api-components

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
