JSP頁面中串連IBM Cloudscape(derby)資料庫

來源:互聯網
上載者:User
以前寫過一個jsp頁面中串連mysql的例子
串連derby時,只是jdbc的串連屬性有所改變,大同小異而已。
derby資料庫與mysql不同的是,它有兩種串連方式:embbed 和 net server
這裡只用了第一種embbed的形式,第二種還沒有試過。
系統運行環境:winxp+jdk1.4.2+tomcat+cloudscape10.0
以下是具體的網頁代碼:
<html>
<head><title>derbyconnect.jsp</title></head>
<body>
<%@ page language="java" import="java.sql.*" import="java.util.Properties" %>
<%
String databaseURL ="jdbc:derby:C:DatabasejimmyDB"; //C:DatabasejimmyDB是資料庫的存放位置
try{
Class.forName("org.apache.derby.jdbc.EmbeddedDriver"); //derby資料庫的embbed驅動名
out.println("Success loading derby Driver!");
}
catch(Exception e)
{
out.print("Error loading derby Driver!");
e.printStackTrace();
}
try{
Properties properties = new Properties();
properties.put("create", "true");//建立資料庫
properties.put("user", "APP");//使用者名稱
properties.put("password", "APP"); //密碼
properties.put("retreiveMessagesFromServerOnGetMessage", "true");
//Get a connection
Connection connect= DriverManager.getConnection(databaseURL, properties);
out.print("Success connect derby server!");
Statement s = connect.createStatement();
s.execute("create table jimmyDB2(num int, addr varchar(40))");

out.println("Created table jimmyDB2");
s.execute("insert into jimmyDB2 values (1956,'Webster St.')");
out.println("Inserted 1956 Webster");
s.execute("insert into jimmyDB2 values (1910,'Union St.')");
out.println("Inserted 1910 Union");
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.