Project

General

Profile

How to run Java DB Derby » History » Revision 5

Revision 4 (Udo Offermann, 22.09.2012 13:36) → Revision 5/28 (Udo Offermann, 22.09.2012 13:38)

h2. Running a Java DB Network Server 

 In samples we use the Java DB, i.e. the SQL database implementation that comes with the Java SE Development Kit (JDK) by Oracle (except for Mac OS in which case you have to use Apache Derby). OS). Java DB is essentially the same as the "Apache Apache Derby DB":http://db.apache.org/derby/ plus, an installation how-to DB, that can be found here: http://db.apache.org/derby/papers/DerbyTut/install_software.html#derby_download. http://db.apache.org/derby/ 

 The instructions below apply to Java DB. Derby can be used similarly. 

 For general information on Java DB go to http://docs.oracle.com/javadb/10.8.2.2/getstart/index.html 

 To run the Java DB in server mode, which is what we want to do, run 

 <pre><code class="ruby"> 
 mkdir derby 
 cd derby 
 java -jar $JAVA_HOME/db/lib/derbyrun.jar server start 
 </code></pre> 

 assuming you want to run it in the folder *derby*. At a second time you can omit the "mkdir" command of course. The environment variable JAVA_HOME is expected to point to your JDK installation folder. 

 On Windows run 

 <pre><code class="ruby"> 
 mkdir derby 
 cd derby 
 java -jar %JAVA_HOME%\db\lib\derbyrun.jar server start 
 </code></pre> 

 In order to interactively query Java DB, we recommand to use the Data Source Explorer view in Eclipse. But any SQL client that can make use of JDBC drivers should be fine. The driver for Java DB can be found (at the time of this writing) in *$JAVA_HOME/db/lib/derbyclient.jar* (and similarly on Windows).