Andez
Andez

Reputation: 5848

SQL Server Libraries for Java

I'm curious to find what SQL Server libraries are available for Java.

At present we are using the com.microsoft.jdbc.sqlserver.SQLServerDriver driver. I think this was downloaded from the Microsoft site a while ago.

What alternative libraries are available?

Many thanks,

Andez

Upvotes: 1

Views: 2753

Answers (2)

oluies
oluies

Reputation: 17831

DataDirect is a well known alternative (used by many vendors) but also others such as

JTDS is an open source alternative

NB: I have only used the MS driver, DataDirect and the i-net drivers suceccfully in production, mostly prior to the MS JDBC driver release.

Upvotes: 2

Matt Brock
Matt Brock

Reputation: 5391

Seconding the open source jTDS Driver. It also works perfectly with Hibernate.

Upvotes: 2

Related Questions