My understanding is that in order to maintain source-compatibility, Java never introduces new methods to public interfaces, as that breaks existing clients implementing the interfaces. Java Release notes states
In general, the policy is as follows, except for any incompatibilities listed further below:
Maintenance releases (such as 1.4.1, 1.4.2) do not introduce any new language features or APIs. They will maintain source-compatibility with each other.
Functionality releases and major releases (such as 1.3.0, 1.4.0, 5.0) maintain upwards but not downwards source-compatibility.
Yet, the packages java.sql
and javax.sql
continue to evolve and introduce many incompatible changes. For example, I noticed the following incompatible changes (introduced in Java 6):
java.sql.Statement
extendsjava.sql.Wrapper
, requiring new two new methods.java.sql.Statement
introduces 3 new methodsjava.sql.PreparedStatement
introduces 19 new methods!java.sql.ResultSet
introduces 48 new methods!
Do you know how and why these methods got added? Is java.sql
being treated differently from the rest of the platform? Do you know of the discussion/JSR around these additions?