I've read in several places that if you are using Java 1.6 then you should use type 4 JDBC drivers. Does that mean that you should not use type 3 drivers?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Type 4 drivers are generally much preferred, for reasons of simplicity. No native code, and no middleware.

However, other driver types are still perfectly valid, they're just more effort to set up. If you need to use them, then don't be afraid to do so.

link|improve this answer
feedback

It probably just means that if you can, you might as well take advantage of the extra feature set provided by JDBC 4 if you are using Java 1.6...

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.