I see quite a few changed interfaces in JDK7, e.g., the addition of ResultSet.getObject(String, Class<T>). I was greatly surprised by this incompatible change, especially because I've never seen it discussed.

I suppose the incompatibility doesn't matter when I use a JAR file instead of trying to compile the project myself, right?

What is the proper way to support both JDK6 and JDK7? Does simply implementing the new methods and never using them suffice?

link|improve this question

77% accept rate
1  
Pls, don't close it.. I'm going to make a better question from it now! – maaartinus Oct 7 '11 at 20:17
feedback

3 Answers

up vote 1 down vote accepted

It seems

<T> T getObject(int columnIndex, Class<T> type) throws SQLException

and

<T> T getObject(String columnLabel,  Class<T> type) throws SQLException

were introduced in 1.7. (At least it says "Since 1.7") in the documentation. I agree, it's kind of a nasty change.

There are more changes in the java.sql interfaces. Connection for instance, got 5 new methods in 1.7. Hopefully the breaking changes are worthwhile.

Does simply implementing the new methods and never using them suffice?

Yes, but avoid using the @Overrides annotation on methods not present in the earlier version of the interface.

link|improve this answer
I can live with it, but isn't it the first time ever that such incompatible changes were introduced in new Java version? – maaartinus Oct 7 '11 at 20:16
Hehe, yes, except for a few minor things... Variables named enum was allowed prior to Java 1.5 for instance :-) Can't think of any breaking changes in the API though. – aioobe Oct 7 '11 at 20:21
@maaartinus No, the java.sql interfaces were extended before from 1.1 to 1.2. (This was the death hit to my fun project to implement an JDBC engine in memory, then: suddenly I had to implement many more methods.) – Paŭlo Ebermann Oct 8 '11 at 9:47
@Paŭlo Ebermann: Thx, it was before I started with Java. – maaartinus Oct 8 '11 at 13:10
feedback

Instead of Eclipse, I would read the ResultSet javadoc.

link|improve this answer
I've found it in the meantime and there's really`since 1.7`. – maaartinus Oct 7 '11 at 20:13
The 'old' methods are still there, too – michael667 Oct 7 '11 at 20:20
@michael667, yes, but introducing new methods in an interface is still a breaking change. (I agree that it would be much worse to actually remove methods from the interface though!) – aioobe Oct 7 '11 at 20:30
Adding methods breaks old implementers, while removing methods breaks old users of the interface. (Maybe the engine here uses some proxy magic to implement it for old drivers.) – Paŭlo Ebermann Oct 8 '11 at 9:50
feedback

You can pre-implement these methods, but you will not be able to use the @Override annotation. Looks like Java 7 doesn't define any new types which would prevent you from implementing the new methods in Java 6 but this is not always the case (e.g. usages of SavePoint in Java 1.4 but there are many others).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.