How do I configure a project to use latest Derby DB version (10.4)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T22:08:49Zhttp://stackoverflow.com/feeds/question/122468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122468/how-do-i-configure-a-project-to-use-latest-derby-db-version-10-40How do I configure a project to use latest Derby DB version (10.4)?ramayac2008-09-23T17:30:03Z2008-09-23T20:58:41Z
<p>Every time I try to run a small application that uses a Derby DB I get this error message:</p>
<blockquote>
<p><strong>Message: Database at /path/to/db/TheDB has an incompatible format with the current version of the software. The database was created by or upgraded by version 10.4.</strong></p>
</blockquote>
<p>I've added the library from Netbeans, and still have the same problem.<br />
I'm not sure what to do here.</p>
http://stackoverflow.com/questions/122468/how-do-i-configure-a-project-to-use-latest-derby-db-version-10-4/122494#1224940Answer by ramayac for How do I configure a project to use latest Derby DB version (10.4)?ramayac2008-09-23T17:34:25Z2008-09-23T17:34:25Z<p>Hmmm, all I have to do was to add the proper derby.jar <strong>manually</strong> to the project.<br />
A simple copy command operation: </p>
<blockquote>
<p>cp /opt/Apache/derbyinstall/lib/<strong>derby.jar</strong> /path/to/project/<strong>dist/lib/</strong> </p>
</blockquote>
<p>...did the job.
The problem was that: I did this operation <em>from</em> Netbeans, and <em>I don't know why</em>, Netbeans didn't update the jar file. Weird, but fixed. :)</p>
http://stackoverflow.com/questions/122468/how-do-i-configure-a-project-to-use-latest-derby-db-version-10-4/123833#1238330Answer by James Schek for How do I configure a project to use latest Derby DB version (10.4)?James Schek2008-09-23T20:58:41Z2008-09-23T20:58:41Z<p>The version included with Netbeans might be old (Derby 10.2 as of NB 6.0). If you added Derby via the project properties and added the "Library", then you probably had the old version.</p>
<p>You can update the library by going to Tool -> Libraries. Select "Java DB Driver". Delete the jar references and update them to point at your 10.4 version.</p>
<p>If you added the JAR file to the project properties AND had the library added, then NB may have grabbed the first/last JAR it found in the list...</p>