What database are you trying to access using Java? SQL Server, DB2,
Oracle, ???
Bruce - 23 Mar 2006 08:58 GMT
In fact, I am trying to implement a general purpose wrapper for various
databases. The design is to put the a jdbc driver into a folder named
"drivers", and my program would register the jdbc driver class right
and provide user a list of current jdbc driver names.
Дмитрий - 23 Mar 2006 12:10 GMT
You can scan jar-file and find all classes which implement
java.sql.DriverManager.
Bjorn Abelli - 25 Mar 2006 13:01 GMT
"???????" <dmrzh@mail.ru> wrote...
> You can scan jar-file and find all classes which implement
> java.sql.DriverManager.
I think you mean those classes that implements java.sql.Driver.
The DriverManager *manages* drivers...
// Bjorn A