明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

JSP連接各類(lèi)數(shù)據(jù)庫(kù)大全(3)

[摘要]三、jsp連接DB2數(shù)據(jù)庫(kù)   testdb2.jsp如下:   <%@ page contentType="text/html;charset=gb2312"%>   <%@ page import="java.sql.*"%>  ...
三、jsp連接DB2數(shù)據(jù)庫(kù)
  testdb2.jsp如下:
  <%@ page contentType="text/html;charset=gb2312"%>
  <%@ page import="java.sql.*"%>
  <html>
  <body>
  <%Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();
  String url="jdbc:db2://localhost:5000/sample";
  //sample為你的數(shù)據(jù)庫(kù)名
  String user="admin";
  String password="";
  Connection conn= DriverManager.getConnection(url,user,password);
  Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
  String sql="select * from test";
  ResultSet rs=stmt.executeQuery(sql);
  while(rs.next()) {%>
  您的第一個(gè)字段內(nèi)容為:<%=rs.getString(1)%>
  您的第二個(gè)字段內(nèi)容為:<%=rs.getString(2)%>
  <%}%>
  <%out.print("數(shù)據(jù)庫(kù)操作成功,恭喜你");%>
  <%rs.close();
  stmt.close();
  conn.close();
  %>
  </body>
  </html>