Embed presentation
Download to read offline



Java Database Connectivity (JDBC) is a Java API that allows Java code to connect and execute queries on a database. It uses JDBC drivers to connect to different database types and provides methods to register the driver, create a connection, execute statements and queries, and close the connection. PreparedStatements improve performance by compiling queries only once instead of each execution.


