Reputation:
I am trying to create a new JavaDB. I have added the Java DB Drivers into Libraries, but it's still throwing out an error when creating a new Database under services.
I downloaded and defined db-derby-10.15.2.0-bin
And I defined the driver files here:
I clicked create database here:
And filled in this form:
After I clicked on it, it shows like this:
How can I fix this?
Upvotes: 1
Views: 8228
Reputation:
Finally, I solved this problem.
I don't know why it's not working. But I changed Derby version 10.15
to 10.2
, and now its working.
Upvotes: 1
Reputation: 721
Accordingly with the Derby release notes, I think you are missing the Derby tools
In addition, the derbytools.jar library is now required when running the network server and/or when using Derby DataSources.
Upvotes: 0
Reputation: 646
Don't download the 10.15.2.0 version
Just download from the below, and it will work fine:
https://db.apache.org/derby/releases/release-10_14_2_0.cgi
Upvotes: 0