What do you understand by JDBC Statements?

JDBC statements are basically the statements which are used to send SQL commands to the database and retrieve data back from the database. Various methods like execute(), executeUpdate(), executeQuery, etc.…

What is JDBC Connection interface?

The Connection interface maintains a session with the database. It can be used for transaction management. It provides factory methods that returns the instance of Statement, PreparedStatement, CallableStatement and DatabaseMetaData.

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.