views:

202

answers:

1

The question basically says it all. I'm trying setup up JavaDB on my virtualbox running Ubuntu 9.10.
I have the package downloaded and installed through the package manager, which I believe is the right to go about it. I have also installed the Eclipse's Data Platform Tools. I've been following this tutorial here: http://www.vogella.de/articles/EclipseDataToolsPlatform/article.html.
I'm stuck at the driver definition step. When I select the driver template from the Name/Type tab and the jar file in the Jar List tab, the OK button is never enabled. At the top of the New Driver Definition dialog it says 'Unable to locate Jar/zip in the file system as specified by the driver definition: derby.jar.' I assume this is the problem. Any help or links to a better tutorial would be much appreciated.

A: 

I think my problem was that I had forgotten to initially install derby as an eclipse plugin. I should have thought of this earlier, but Apache actually has a good tutorial for installing derby, integrating it with eclipse and building a sample project.

The link is here: http://db.apache.org/derby/integrate/derby_plugin.html.

Everett