user1023836
user1023836

Reputation: 11

SQL Server 2008 and sqljdbc4 JDK1.6 Connectivity

Has anyone successfully used SQL Server 2008 sqljdbc4.jar with JDK 1.6? The symptom is that it hangs on DriverManager.getConnection(url) statement with no exceptions or errors. Any hint would be appreciated.

I have successfully compiled and run the same code using sqljdbc.jar with JDK 1.5 on the same SQL Server 2008 database with no problems, so I don't think it's an application problem.

Thanks.

Upvotes: 0

Views: 1939

Answers (2)

Shivanand Sondakar
Shivanand Sondakar

Reputation: 1

sqljdbc4.jar is not compatible with jdk1.6 with update 29. I guess problem is there with this version of jdk. The same code wil work fine with other updates of jdk1.6

Upvotes: 0

user1023836
user1023836

Reputation: 11

Mystery solved.

sqljdbc4.jar is incompatible with the latest java 6 (1.6.0 Update 29 (?) as of 11/2/2011). Everything works with (at least) 1.6.0 Update 25.

Upvotes: 1

Related Questions