JDBC Tutorials - Herong's Tutorial Notes
Dr. Herong Yang, Version 2.11

Setting Up Java DB (Derby) in Network Server

This section describes how to set up and run Java DB in Network Server mode listening client connections over the network.

Java DB can be used in two modes:

  • Embedded Mode - The database will be started and executed as part of a Java application, sharing the same JVM as the application.
  • Network Server - The database will be started as a stand alone application and listening client connections over the network on a TCP/IP port.

I want to try the Network Server mode first. Here is what I did to setup Java DB and start it in Network Server mode:

C:\>cd \local\javadb

C:\local\javadb>mkdir databases

C:\local\javadb>cd databasess

C:\local\javadb\databases>..\bin\startNetworkServer.bat
Apache Derby Network Server - 10.2.2.0 - (485682) started and ready
to accept connections on port 1527 at 2007-08-15 17:20:39.640 GMT

Cool. My Java DB is up and running in Network Server mode on host "localhost" and listening connections on port "1527".

Note that I created a new directory called C:\local\javadb\databases and started Java DB from this directory. In this way, C:\local\javadb\databases will be used as the database home directory. Any new databases created on Java DB server will be located in this directory.

Table of Contents

 About This Book

 JDBC (Java Database Connectivity) Introduction

 Downloading and Installing JDK - Java SE

Installing and Running Java DB - Derby

 Downloading and Installing Java DB (Derby)

 "sysinfo" - Checking Java DB (Derby) Installation

Setting Up Java DB (Derby) in Network Server

 "ij" - Client Tool to Create New Databases

 Derby (Java DB) JDBC Driver

 Derby (Java DB) JDBC DataSource Objects

 Java DB (Derby) - DML Statements

 Java DB (Derby) - ResultSet Objects of Queries

 Java DB (Derby) - PreparedStatement

 MySQL Installation on Windows

 MySQL JDBC Driver (MySQL Connector/J)

 MySQL - PreparedStatement

 MySQL - Reference Implementation of JdbcRowSet

 MySQL - JBDC CallableStatement

 MySQL CLOB (Character Large Object) - TEXT

 MySQL BLOB (Binary Large Object) - BLOB

 Oracle Express Edition Installation on Windows

 Oracle JDBC Drivers

 Oracle - Reference Implementation of JdbcRowSet

 Oracle - PreparedStatement

 Oracle - JBDC CallableStatement

 Oracle CLOB (Character Large Object) - TEXT

 Oracle BLOB (Binary Large Object) - BLOB

 Microsoft SQL Server 2005 Express Edition

 Microsoft JDBC Driver for SQL Server - sqljdbc.jar

 Microsoft JDBC Driver - Query Statements and Result Sets

 Microsoft JDBC Driver - DatabaseMetaData Object

 Microsoft JDBC Driver - DDL Statements

 Microsoft JDBC Driver - DML Statements

 SQL Server - PreparedStatement

 SQL Server CLOB (Character Large Object) - TEXT

 SQL Server BLOB (Binary Large Object) - BLOB

 JDBC-ODBC Bridge Driver - sun.jdbc.odbc.JdbcOdbcDriver

 JDBC-ODBC Bridge Driver - Flat Text Files

 JDBC-ODBC Bridge Driver - MS Access

 JDBC-ODBC Bridge Driver - MS SQL Server

 Summary of JDBC Drivers and Database Servers

 Additional Tutorial Notes to Be Added

 References

 PDF Printing Version

Dr. Herong Yang, updated in 2007
Setting Up Java DB (Derby) in Network Server