JDBC is a Java API that allows Java programs to execute SQL statements. There are four types of JDBC drivers: Type 1 uses JDBC-ODBC bridge and ODBC driver; Type 2 uses a native database API; Type 3 uses a middleware layer for database independence; Type 4 communicates directly with the database using its native protocol. To connect to a database using JDBC, an application loads the appropriate JDBC driver and then calls DriverManager.getConnection(), specifying the database URL, username, and password.