如何使用 JDBC 程序连接到 Derby 数据库?


Apache Derby 是一个关系数据库管理系统,完全基于(用/实现于)Java 编程语言。它是 Apache 软件基金会开发的一个开源数据库。

安装 Derby

按照以下步骤安装 Derby:

  • 访问 Apache Derby 首页 **https://db.apache.org/derby/**。点击“下载”选项卡。

  • 选择并点击 Apache Derby 最新版本的链接。

  • 点击所选链接后,您将被重定向到 apache derby 的 **发行版** 页面。在这里您可以看到,Derby 提供的发行版包括 db-derby-bin、db-derbylib.zip、db-derby-lib-debug.zip 和 db-derby-src.zip。

  • 下载 **db-derby-bin** 文件夹。将其内容复制到您想要安装 Apache Derby 的单独文件夹中(例如,**C:\Derby**)。

现在,要使用 Derby,

  • 确保您已通过传递 Java 安装文件夹的 bin 文件夹位置设置了 **JAVA_HOME** 变量,并将 **JAVA_HOME/bin** 包含在 PATH 变量中。
  • 创建一个新的环境变量 **DERBY_HOME**,其值为 C:\Derby。
  • db-derby-bin 发行版的 bin 文件夹(我们将其更改为 C:\Derby\bin)包含所有必需的 jar 文件。

示例

下面的 JDBC 程序建立与 Apache Derby 数据库的连接,创建一个名为 employeedata 的表,向其中插入记录,检索并显示表的内容。

public class InsertData {
   public static void main(String args[]) throws Exception {
      //Registering the driver
      Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
      //Getting the Connection object
      String URL = "jdbc:derby:mydatabs;create=true";
      Connection conn = DriverManager.getConnection(URL);
      //Creating the Statement object
      Statement stmt = conn.createStatement();
      //Creating a table in Derby database
      String query = "CREATE TABLE EmployeeData( "
         + "Id INT NOT NULL GENERATED ALWAYS AS IDENTITY, "
         + "Name VARCHAR(255), "
         + "Salary INT NOT NULL, "
         + "Location VARCHAR(255), "
         + "PRIMARY KEY (Id))";
      stmt.execute(query);
      System.out.println("Table created");
      //Inserting data
      query = "INSERT INTO EmployeeData("
         + "Name, Salary, Location) VALUES "
         + "('Amit', 30000, 'Hyderabad'), "
         + "('Kalyan', 40000, 'Vishakhapatnam'), "
         + "('Renuka', 50000, 'Delhi'), "
         + "('Archana', 15000, 'Mumbai'), "
         + "('Trupthi', 45000, 'Kochin'), "
         + "('Suchatra', 33000, 'Pune'), "
         + "('Rahul', 39000, 'Lucknow'), "
         + "('Trupthi', 45000, 'Kochin')";
      stmt.execute(query);
      System.out.println("Values inserted");
      //Retrieving data
      ResultSet rs = stmt.executeQuery("Select * from EmployeeData");
      System.out.println("Contents of the table EmployeeData table:");
      while(rs.next()) {
         System.out.print("ID: "+rs.getInt("ID")+", ");
         System.out.print("Name: "+rs.getString("Name")+", ");
         System.out.print("Salary: "+rs.getInt("Salary")+", ");
         System.out.print("Location: "+rs.getString("Location"));
         System.out.println();
      }
   }
}

输出

Table created
Values inserted
Contents of the table EmployeeData table:
ID: 1, Name: Amit, Salary: 30000, Location: Hyderabad
ID: 2, Name: Kalyan, Salary: 40000, Location: Vishakhapatnam
ID: 3, Name: Renuka, Salary: 50000, Location: Delhi
ID: 4, Name: Archana, Salary: 15000, Location: Mumbai
ID: 5, Name: Trupthi, Salary: 45000, Location: Kochin
ID: 6, Name: Suchatra, Salary: 33000, Location: Pune
ID: 7, Name: Rahul, Salary: 39000, Location: Lucknow
ID: 8, Name: Trupthi, Salary: 45000, Location: Kochin

更新于:2019年7月30日

2K+ 次浏览

启动您的 职业生涯

完成课程获得认证

开始学习
广告