JDBC API Versions
JDBC API Versions
The JDBC 1.0 API was the first official JDBC API launched and consists of classes and interfaces that we can open connections to databases.
JDBC Versions
The major JDBC versions are as follows:
- The JDBC 1.0 API
- The JDBC 1.2 API
- The JDBC 2.0 Optional Package API
- The JDBC 2.1 core API
- The JDBC 3.0 API
- The JDBC 4.0 API
JDBC Version | Released With | Release Year | Key Features |
---|---|---|---|
JDBC 1.0 | JDK 1.1 | 1997 | Basic SQL support, DriverManager, Connection, Statement, ResultSet |
JDBC 2.0 | J2SE 1.2 / 1.3 | 1998–2000 | Scrollable ResultSet, batch updates, Blob, Clob support, connection pooling |
JDBC 3.0 | J2SE 1.4 | 2002 | Savepoints, GeneratedKeys, auto-loading drivers, Boolean data type |
JDBC 4.0 | Java SE 6 | 2006 | Auto-discovery of JDBC drivers, SQLXML support, RowId |
JDBC 4.1 | Java SE 7 | 2011 | Introduced try-with-resources support |
JDBC 4.2 | Java SE 8 | 2014 | Support for new Java 8 date/time API, enhancements to PreparedStatement |
JDBC 4.3 | Java SE 9 | 2017 | ShardingKey, ConnectionBuilder, enhancements for multitenancy |
—
Java Tutorials
Java Tutorial on this website:
For more information on Java, visit the official website :
- https://www.oracle.com/java/
More information about Oracle Database:
- https://www.oracle.com/database/