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");