请求:Microsoft SQL Server JDBC 驱动程序 1.1

发布于 2024-12-01 15:03:07 字数 291 浏览 0 评论 0原文

我有一个旧的 Java 项目,需要从 Maven Ant 任务重建它,并且它有很多依赖项。不幸的是,支持存储库服务器不再存在,并且某些文件也不在项目的代码存储库中,因此我必须自己查找它们。

不管怎样,我很难找到某个库,microsoft:sqlserver-jdbc:jar:1.1,如日志所示。换句话说,它应该是一个名为 sqlserver-jdbc-1.1.jar 或类似名称的文件。

它的新版本很容易找到,但我不确定它们是否适合。也许有人可以帮助我?

提前致谢!

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 library, 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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑看君怀她人 2024-12-08 15:03:07

Microsoft JDBC 1.1 驱动程序不再受支持,因此不再可供下载。 JDBC 1.2 驱动程序可供使用 service.sap.com 上的 JRE 1.4 的 SAP 客户使用。 JDBC 2.0、3.0 和 4.0 驱动程序可从 Microsoft.com 下载,并支持 JRE 5 和 JRE 5。 6.

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.

话少情深 2024-12-08 15:03:07

如果您可能不遵守这个旧的 MS 驱动程序的错误,我建议您使用 JTDS 驱动程序

    <dependency>
        <groupId>net.sourceforge.jtds</groupId>
        <artifactId>jtds</artifactId>
        <version>1.2.4</version>
    </dependency>

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文