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

"sysinfo" - Checking Java DB (Derby) Installation

This section describes how to use 'sysinfo' to verify Java DB installation.

Obviously, Java DB requires Java SE to be installed. I have Java SE 6 installed on my Windows system as described in other tutorials in this book. To verify Java DB installation and the required Java SE, I used the "sysinfo" tool as suggested in Java DB documents:

 
C:\>cd \local\javadb\bin

C:\local\javadb\bin>sysinfo
------------------ Java Information ------------------
Java Version:    1.6.0_02
Java Vendor:     Sun Microsystems Inc.
Java home:       C:\progra~1\java\jdk1.6.0_02\jre
Java classpath:  C:\local\javadb\bin\../lib/derby.jar;
  C:\local\javadb\bin\../lib/derbynet.jar;
  C:\local\javadb\bin\../lib/derbyclient.jar;
  C:\local\javadb\bin\../lib/derbytools.jar
OS name:         Windows XP
OS architecture: x86
OS version:      5.1
Java user name:  herong
Java user home:  C:\Documents and Settings\herong
Java user dir:   C:\home\herong
java.specification.name: Java Platform API Specification
java.specification.version: 1.6
--------- Derby Information --------
JRE - JDBC: Java SE 6 - JDBC 4.0
[C:\local\javadb\lib\derby.jar] 10.2.2.0 - (485682)
[C:\local\javadb\lib\derbytools.jar] 10.2.2.0 - (485682)
[C:\local\javadb\lib\derbynet.jar] 10.2.2.0 - (485682)
[C:\local\javadb\lib\derbyclient.jar] 10.2.2.0 - (485682)
...

The output confirms that my Java DB was installed properly.

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
"sysinfo" - Checking Java DB (Derby) Installation