What are the JDBC API components?

Discussion RoomCategory: Database&SQLWhat are the JDBC API components?
Ram asked 5 years ago

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.
Scroll to Top