現在有好多初學jsp的網友經常會問數據庫怎麼連接啊
create table test(test
然後向這個表寫入一條測試紀錄
那麼現在開始我們的jsp和數據庫之旅吧
一
testoracle
<%@ page contentType="text/html;charset=gb
<%@ page import="java
<html>
<body>
<%Class
String url="jdbc:oracle:thin:@localhost:
//orcl為你的數據庫的SID
String user="scott";
String password="tiger";
Connection conn= DriverManager
Statement stmt=conn
String sql="select * from test";
ResultSet rs=stmt
while(rs
您的第一個字段內容為
您的第二個字段內容為
<%}%>
<%out
<%rs
stmt
conn
%>
</body>
</html>
二
testsqlserver
<%@ page contentType="text/html;charset=gb
<%@ page import="java
<html>
<body>
<%Class
String url="jdbc:microsoft:sqlserver://localhost:
//pubs為你的數據庫的
String user="sa";
String password="";
Connection conn= DriverManager
Statement stmt=conn
String sql="select * from test";
ResultSet rs=stmt
while(rs
您的第一個字段內容為
您的第二個字段內容為
<%}%>
<%out
<%rs
stmt
conn
%>
</body>
</html>
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19870.html