I want to run Derby Client from within an OSGi bundle. The bundle gets built by Maven so I added a dependency to org.apache.derby:derbyclient. At runtime I get the following exception: java.sql.SQLException: No suitable driver found for jdbc:derby://localhost:1527/testdb.
Interestingly the whole thing works when I use the embedded driver and a dependency to org.apache.derby.derby. I just don't see the difference between those two.
What am I doing wrong and how can I fix it?
Some tidbits:
- After some advice I found on the Internet I set the following OSGi header:
DynamicImport-Package: *. This fixed problems with the embedded driver but the client still fails. - The version of Derby I use is 10.7.1.1 which should be OSGi enabled (at least it has OSGi headers).
Class.forName()fails with the client driver. I'm still not sure why it's sometimes necessary and sometimes not. – musiKk Apr 11 '11 at 14:09