where is org.apache.derby.jdbc.ClientDriver?

derby, jakarta-ee, java, jdbc, tomcat

Solution

OK: have you looked on the Apache Derby page:

- http://db.apache.org/derby/releases/release-10.9.1.0.cgi

Download db-derby-10.9.1.0-bin.zip

It contains many files, including `derby.jar` and `derbyclient.jar` (along with much documentation).

`derbyclient.jar` contains our friend `org.apache.derby.jdbc.ClientDriver.class`

Problem

I downloaded the jar of Core Apache Derby database engine, which also includes the embedded JDBC driver (10.9.1.0). But that jar doesn't include the `.class` file of `ClientDriver` in the jdbc package. Why is that ? Where can i find this class file ? I need this file to connect to derby database from tomcat as the server. Please provide the download link of the complete jar so that i get the required `.class` file.

Original source

Related problems