JDBC Tutorials - Herong's Tutorial Examples - v3.12, by Dr. Herong Yang
Java DB (Derby) in the JDK 1.8 Package
This section describes how to use Java DB (Derby) 10.11 that included in JDK 1.8 package.
Java DB 10.11 free version is now included in the JDK package. If you have already downloaded and installed JDK 1.8, the Java DB is available in the %JAVA_HOME%\db folder. There is no need to download and install Java DB separately. For example, on my Windows computer, I have JDK 1.8.0_45 installed. The Java DB is located at "C:\Program Files\Java\jdk1.8.0_45\db\".
Now set the DERBY_HOME environment variable:
herong> set DERBY_HOME=C:\Program Files\Java\jdk1.8.0_45\db"
If you haven't installed JDK 1.8 yet. Please follow the JDK 1.8 download and installation tutorial presented earlier in this book.
If you have an old version of Java DB (Derby) installed, you should remove the old version and remove related environment variables. For example, I have JAVA DB 10.5.3 installed. So I need to remove the "C:\Program Files\Sun\JavaDB" folder.
Table of Contents
JDBC (Java Database Connectivity) Introduction
►Installing and Running Java DB - Derby
Downloading and Installing Java DB (Derby)
►Java DB (Derby) in the JDK 1.8 Package
Downloading Java DB (Derby) Documents
"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 DataSource Objects
Java DB (Derby) - DML Statements
Java DB (Derby) - ResultSet Objects of Queries
Java DB (Derby) - PreparedStatement
MySQL JDBC Driver (MySQL Connector/J)
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 - Reference Implementation of JdbcRowSet
Oracle - JBDC CallableStatement
Oracle CLOB (Character Large Object) - TEXT
Oracle BLOB (Binary Large Object) - BLOB
Microsoft SQL Server Express Edition
Microsoft JDBC Driver for SQL Server
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