Version 0.8
Copyright © 2009, 2010, 2011 Lars Vogel
28.11.2011
| Revision History | |||
|---|---|---|---|
| Revision 0.1 | 10.01.2009 | Lars Vogel |
Created |
| Revision 0.2 - 0.8 | 19.01.2009 - 28.11.2011 | Lars Vogel |
bug fixes and enhancements |
Table of Contents
Apache Derby is an open source database written in Java. It is free and performs well. Apache Derby is used in the JDK and is called Java DB. Apache Derby and Java DB are essentially the same. Apache Derby is the reference implementation for JDBC 4.0 and compatible to ANSI-SQL. JDBC is the Java interface to connect to databases.
Derby can be used in a server mode and in so-called embedded mode. If Derby runs in the server mode you start the Derby network server which will be responsible for handling the database requests. In the enbedded mode Derby runs within the JVM (Java Virtual Machine) of the application. In this mode only the application can access the database, e.g. another user / application will not be able to access the database.
Download the latest Derby version from the Apache website http://db.apache.org/derby/. Choose the bin distribution and extract this zip to a directory of your choice. Also make the Derby tools available in your path via the following:
Set the environment variable DERBY_HOME to the Derby installation directory
Add DERBY_HOME/bin to the "path" environment variable
Use the following command in the command line to start the Derby network server (located in the Derby installation directory/bin). On Microsoft Windows it is possible to use the .bat version.
startNetworkServer
This will start the network server which can serve an unlimited number of database. By default the server will be listening on port 1527 but this can be changed via the -p flag.
startNetworkServer -p 3301
By default Derby will only accept connections from the localhost. To make the Derby server accept connections also from other hosts then use the following start command. Replace "sampleserver.sampledomain.com" with the name or the IP of the server. The server will then accept connections only from other servers as the localhost.
startNetworkServer -h sampleserver.sampledomain.com
If connections should be allowed from localhost and any other server use the following.
startNetworkServer -h 0.0.0.0
To connect to the network server via Java code you need to have the derbyclient.jar in your classpath. The network connection string to this database is the IP address of the server:portnumber. For example for a server which is running on localhost you can create a new database via the following string.
jdbc:derby://localhost:1527/dbname;create=true
If you want to connect to an existing database you can use the following string.
jdbc:derby://localhost:1527/c:\temp\mydatabase
For example a small Java client might look like the following. This assumes that you have already created a schema called a table users with the columns "name" and "number".
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Statement; public class DerbyTest { private Connection connect = null; private Statement statement = null; private ResultSet resultSet = null; public DerbyTest() throws Exception { try { Class.forName("org.apache.derby.jdbc.ClientDriver").newInstance(); connect = DriverManager .getConnection("jdbc:derby://localhost/c:/temp/db/FAQ/db"); PreparedStatement statement = connect .prepareStatement("SELECT * from USERS"); resultSet = statement.executeQuery(); while (resultSet.next()) { String user = resultSet.getString("name"); String number = resultSet.getString("number"); System.out.println("User: " + user); System.out.println("ID: " + number); } } catch (Exception e) { throw e; } finally { close(); } } private void close() { try { if (resultSet != null) { resultSet.close(); } if (statement != null) { statement.close(); } if (connect != null) { connect.close(); } } catch (Exception e) { } } public static void main(String[] args) throws Exception { DerbyTest dao = new DerbyTest(); } }
ij is Derby's interactive JDBC scripting tool. It is a simple utility for running scripts or interactive queries against a Derby database. To start the tool open a command shell and type in "ij". This will start a shell program which can connect to your database and execute SQL commands .
Stop this tool with typing in "exit;" and pressing enter. In ij every line need to get terminated via a ;
If you want to connect to the Derby database in embedded mode you can use the following command. In this example the database is located at c:\temp\db\FAQ\db
connect 'jdbc:derby:c:\temp\db\FAQ\db';
If you want to connect to a Derby database which is running in server mode then you can use the following command.
connect 'jdbc:derby://localhost:1527/c:\temp\db\FAQ\db;create=true';
To disconnect from the database.
disconnect;
To run a SQL script from ij use the following command.
run 'sqlscript.sql'
You can also used SQL directly, e.g.
select * from SCHEMA1.USERS where NUMBER='lars'
The Derby Server is started via a batch program. In an server environment this batch program should be automatically started if the server is rebooted / started. The windows program "srvmgr" can be used for this purpose. For details on the tool please check the official documentation; the following will give a description how this can be used for Apache Derby. Install "srvmgr" and remember the installation path.
We will call our service "ApacheDerby" and the batch file is located under "C:\db-derby\bin\startNetworkServer.bat" In the command line register a service via:
# This assumes the "srvmgr" tools are installed in c:\Windows\system32\
instsrv ApacheDerby c:\Windows\system32\srvany.exe
You should receive a success message.
# This will remove a service installed with the name ApacheDerby instsrv ApacheDerby REMOVE
Run Regedt32.exe and locate the following subkey HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ApacheDerby
From the Edit menu, select New -> Key and add a key named "Parameters".
Select the "Parameters" key, that you have just created: From the Edit menu, select New -> String Value. Maintain the following values.
Value Name: Application Data Type : REG_SZ String : C:\db-derby\bin\startNetworkServer.bat Value Name: AppDirectory Data Type : REG_SZ String : C:\db-derby\bin\ Value Name: AppParameters Data Type : REG_SZ String : -h 0.0.0.0
Now start/adjust the service in the Windows services control panel
Before posting questions, please see the vogella FAQ. If you have questions or find an error in this article please use the www.vogella.com Google Group. I have created a short list how to create good questions which might also help you.
http://db.apache.org/derby/ Apache Derby Homepage
http://support.microsoft.com/kb/q137890/ Microsoft Help - How To Create a User-Defined Service