Microsoft SQL 2K JDBC Driver not valid
Brought to you by:
crsadun
I installed CMaker 1.4 and tried registering the
following driver
com.microsoft.jdbc.sqlserver.SQLServerDriver
This is a free (no-cost) driver released by MS for use
with MS SQL 2000. The driver is installed on my
system, and I can connect using it and run queries.
After I register in the CMaker jdbc repository,
running -ld, I get
The class com.microsoft.jdbc.sqlserver.SQLServerDriver
listed in jdbc.properties is not a JDBC Driver!
(Skipped)
The class does not directly implement the
java.sql.Driver interface, but its superclass does--
could that be the problem?
Thanks
Patrick
Logged In: YES
user_id=15880
Yep, it could. The check in CMaker.java (line 127) is made
just checking the interface on the leaf class.
I'll try and fix this up asap - it just requires a loop on
the interface implemented by the superclasses.