Apache Derby Database
Apache Derby Database
de
Home
Blog
Java
Eclipse
Web
Technology
Algorithms
Source Code
Browse
Supermicro Solutions Superb Performance, Cost-effective Based on Intel Xeon 5500 Series www.supermicro.com/Xeon_5500/ Dell Official Website Dell Server Solutions Powered With Intel Xeon. Gain Efficiency Today! www.TalkToDell.com WINDOWS Virtualization Optimize, Extend, & Accelerate Your Infrastructure. Free EMC Whitepaper www.emc.com/virtualization
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. Server vrs. embedded mode 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
Apache Derby GUI Tools Apache Derby DB Administration Tool Download Now! Windows, Linux, OSX www.aquafold.com Java Performance Best Practices for Profiling and Finding Java Application Issues. Offers.Compuware.com Java/J2EE Training Outstanding In Depth Java Training We Develop the Experts! www.hartmannsoftware.com
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 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.
2. Installation of Derby
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
3. Server mode
3.1. Starting Derby in server mode
converted by Web2PDFConvert.com
Use the following command in the command line to start the Derby network server (located in the Derby installation directory/bin). On Microsoft Windows is is possible to use the .bat version.
startNetworkServer
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
Per 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
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".
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(); }
converted by Web2PDFConvert.com
Application Integration HL7, XML, web services, ftp, email, ODBC, serial, custom adapters. www.bridgeforwardsoftware.com Top 10 Bug Tracking Tool 2010 Top 10 Bug Tracking Tool Vendor Rankings. Get Free Report. Business-Software.com/BugTracking Is Your SQL Server Slow? Network or WAN bottleneck? SQLNitro can increase bandwith ten fold! www.nitrosphere.net
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';
disconnect;
run 'sqlscript.sql'
# This assumes the "srvmgr" tools are installed in c:\Windows\system32\ instsrv ApacheDerby c:\Windows\system32\srvany.exe
Y ou 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
converted by Web2PDFConvert.com
Data Type : REG_SZ String : C:\db-derby\bin\ Value Name: AppParameters Data Type : REG_SZ String : -h 0.0.0.0
6. Thank you
Thank you for practicing with this tutorial. I maintain this tutorial in my private time. If you like the information please help me by using flattr or donating or by recommending this tutorial to other people.
converted by Web2PDFConvert.com