harishtps
harishtps

Reputation: 1439

JDBC driver for SQL Server 7.0?

I need to retrieve datas from the SQL Server 7.0 through java.

I have tried the following drivers

These jars works fine for the SQL Server versions 2000 and above, but for the version 7.0 its displaying error like The TDS prelogin response is incomplete. The target server must be SQL Server 2000 or later.

What are the drivers I should use to retrieve datas from the Sql Server 7.0 through java?

Upvotes: 1

Views: 1709

Answers (2)

Olaf
Olaf

Reputation: 6289

Version 7.0 you say?

That brings memories!

Back in the day we used JDBC driver from the company currently named DataDirect to connect to SQL Server 7.0.

Back in the day we had to pay for the JDBC drivers and we were lucky if it was available for the platform we needed.

Upvotes: 0

jzd
jzd

Reputation: 23639

The jtds driver should work fine.

http://jtds.sourceforge.net/

I have used it for MSSQL 2000, but the website claims it works for 7.0 as well.

Upvotes: 2

Related Questions