Request: Microsoft SQL Server JDBC Driver 1.1
I have an old Java project which I need to rebuild from a Maven Ant task and which has a lot of dependencies. Unfortunately the support repository server does not exist any more and some of the files were not in the project's code repository either so I have to look them up for myself.
Anyway, I have trouble finding a certain lib开发者_如何学Pythonrary, microsoft:sqlserver-jdbc:jar:1.1
as the log says. In other words, it should be a file called sqlserver-jdbc-1.1.jar
or something similar.
Newer versions of it can be found easily but I am not sure if they will fit. Maybe someone can help me out here?
Thanks in advance!
The Microsoft JDBC 1.1 driver is no longer supported that is why it is no longer available for download. The JDBC 1.2 driver is available to SAP customers who are using JRE 1.4 from service.sap.com. The JDBC 2.0, 3.0 and 4.0 drivers are available for download from Microsoft.com and support JRE 5 & 6.
If you may not adhere to the bugs of this old MS driver I'd recommend you to use JTDS driver.
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.2.4</version>
</dependency>
精彩评论