Derby (Java DB) - Inserting Data Rows to Existing Tables

This section describes how to insert new data rows into Derby (Java DB) database tables through the JDBC driver.

Now I ready to insert some rows into the HY_Address table. This can be done by running the INSERT INTO statement with the executeUpdate() method. The sample program below inserts 3 rows into HY_Address:

/* DerbyInsertRows.java
 * Copyright (c) HerongYang.com. All Rights Reserved.
 */
import java.sql.*;
public class DerbyInsertRows {
  public static void main(String [] args) {
    Connection con = null;
    try {
      con = DriverManager.getConnection("jdbc:derby://localhost/TestDB");
      Statement sta = con.createStatement();

// insert 3 rows
      int count = 0;
      int c = sta.executeUpdate("INSERT INTO HY_Address"
        + " (ID, StreetName, City)"
        + " VALUES (1, '5 Baker Road', 'Bellevue')");
      count = count + c;

      c = sta.executeUpdate("INSERT INTO HY_Address"
        + " (ID, StreetName, City)"
        + " VALUES (2, '25 Bay St.', 'Hull')");
      count = count + c;

      c = sta.executeUpdate("INSERT INTO HY_Address"
        + " (ID, StreetName, City)"
        + " VALUES (3, '251 Main St.', 'W. York')");
      count = count + c;
      System.out.println("Number of rows inserted: "+count);

      sta.close();
      con.close();
    } catch (Exception e) {
      System.err.println("Exception: "+e.getMessage());
    }
  }
}

The program worked nicely. It gives this output:

herong> java -cp %DERBY_HOME%\lib\derbyclient.jar DerbyInsertRows.java
herong> java -cp $DERBY_HOME/lib/derbyclient.jar DerbyInsertRows.java

Number of rows inserted: 3

Table of Contents

 About This Book

 JDBC (Java Database Connectivity) Introduction

 JDK (Java SE) Installation

 Installing and Running Derby (Java DB)

Derby (Java DB) JDBC Driver

 Derby (Java DB) Driver Features

 Loading Derby JDBC Driver Classes

 Creating Connections to Derby (Java DB) Network Server

 Derby (Java DB) Network Server and JDBC Driver Info

 Derby (Java DB) - Creating New Tables

Derby (Java DB) - Inserting Data Rows to Existing Tables

 Derby (Java DB) - Running SELECT Queries

 Derby (Java DB) JDBC DataSource Objects

 Derby (Java DB) - DML Statements

 Derby (Java DB) - ResultSet Objects of Queries

 Derby (Java DB) - PreparedStatement

 Summary of JDBC Drivers and Database Servers

 Using Connection Pool with JDBC

 Archived Tutorials

 References

 Full Version in PDF/EPUB