Java, Eclipse and Web programming Tutorials
Follow me on twitter About Lars Vogel

Apache Derby Database - Tutorial

Lars Vogel

Version 0.4

30.09.2009

Revision History
Revision 0.110.01.2009Lars Vogel
First draft
Revision 0.219.01.2009Lars Vogel
Added how external hosts can connect to the Derby server
Revision 0.314.09.2009Lars Vogel
Re-worked
Revision 0.430.09.2009Lars Vogel
How to run Apache Derby as Windows Service

Apache Derby

This articles explains how to install the Apache Derby database, how to start the Derby server, how to connect via Java to Derby and how to use the Derby command line tool to issue SQL statements. The installation of Apache Derby as Windows Service is also explained.


Table of Contents

1. Apache Derby
1.1. Overview
1.2. Modes
2. Installation of Derby
3. Server mode
3.1. Starting Derby in server mode
3.2. Connect to the Derby Server via Java
4. Derby tools
4.1. Using Derby from the command line (ij)
4.2. SQL dump for the database schema
5. Running Derby Server as Windows Service
6. Thank you
7. Questions and Discussion
8. Links and Literature

1. Apache Derby

1.1. Overview

Apache Derby is an open source database written in Java. It is free and performs well. Apache Derby is also used in the JDK and is called Java DB. Apache Derby and Java DB are essentially the same. Apache Derby used also to be available in a IBM branded version Cloudscape.

Apache Derby is compatible to ANSI-SQL

Apache Derby is also the reference implementation for JDBC 4.0. JDBC is the Java interface to connect to databases.

1.2. Modes

Derby can be used in a server version and in an embedded version.

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 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.

2. Installation of Derby

Download the latest Derby version from the Apache website http://db.apache.org/derby/ . Choose the bin distribution as it contains several helpful programs.

Extract this zip to a directory of your choice.

Derby allows to run in embedded mode or in server mode.

If you want to use the Derby tool or Derby in Server mode do also the following:

  • Set the environment variable DERBY_HOME to the Derby installation directory

  • Add DERBY_HOME/bin to the path environment variable

3. Server mode

3.1. Starting Derby in server mode

Use the following command from the command line to start the Derby network server (located in the Derby installation directory/bin).

				
startNetworkServer

			

Tip

Windows user can use the .bat version.

This will start the network server which can serve an unlimited number of database. Per standard the server will be listening on port 1527 but this can be changed via the -p flag.

				
startNetworkServer -p 3301
			

Tip

Per default Derby will only accept connections from the localhost.

To make the Derby server accept connections also from other hosts then the localhost 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
			

3.2. Connect to the Derby Server via Java

In case you would now like to connect to this network server from Java you only need to have the derbyclient.jar in your classpath (not the derby.jar).

The network connection string to this database is the 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();
	}

}
			

4. Derby tools

4.1. Using Derby from the command line (ij)

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 disconned 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'
			

4.2. SQL dump for the database schema

Use the tool dblook. Type dblook on the console to see the options, the tool is really easy to use. For example to write the schema "myschema" to the file "lars.sql".

				
dblook -d 'jdbc:derby:c:\temp\db\FAQ\db' -z myschema -o lars.sql
			

5. Running Derby Server as Windows Service

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. I suggest to check the official documentation; the following will give a short description how this can be setup for Apache Derby.

We will call our service "ApacheDerby" and the batch file is located under "C:\db-derby\bin\startNetworkServer.bat"

In the command line run the following command.

			
instsrv ApacheDerby c:\Windows\system32\srvany.exe
		

You should receive a success message.

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

6. Thank you

Thank you for practicing with this tutorial.

Please note that I maintain this website in my private time. If you like the information I'm providing please help me by donating.

7. Questions and Discussion

For questions and discussion around this article please use the www.vogella.de Google Group. Also if you note an error in this article please post the error and if possible the correction to the Group.

I believe the following is a very good guideline for asking questions in general and also for the Google group How To Ask Questions The Smart Way.

8. Links and Literature

http://db.apache.org/derby/ Apache Derby Homepage

http://support.microsoft.com/kb/q137890/ Microsoft Help - How To Create a User-Defined Service