SQL SERVER 2000 JDBC DRIVER

给你一囗甜甜゛ 提交于 2019-12-10 16:44:08

问题


I am trying to find the SQL SERVER 2000 JDBC Driver to use in extracting data from SQL SERVER and also carrying out several operation implemented in Java/JSF. Any idea where I could get my hands on the driver? It is no surprise that Microsoft.com /MSDN stopped supporting and hence supplying the necessary driver. Please help and it is greatly appreciated

P.S. Sorry if this is the wrong place to post this :)

EDIT: Solution Working:

So JTDS does it based on link below. The strings I changed to make it work for SQL SERVER 2000 are:

Class.forName("net.sourceforge.jtds.jdbc.Driver");

and

connServer.dbConnect("jdbc:jtds:sqlserver://host;", "username",
                   "password");

回答1:


Have you tried http://www.microsoft.com/download/en/details.aspx?id=1511

Or http://sourceforge.net/projects/jtds/files/



来源:https://stackoverflow.com/questions/9747998/sql-server-2000-jdbc-driver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!