明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

JSP連接各類數(shù)據(jù)庫大全(2)

[摘要]二、jsp連接Sql Server7.0/2000數(shù)據(jù)庫   testsqlserver.jsp如下:   <%@ page contentType="text/html;charset=gb2312"%>   <%@ page import="ja...
二、jsp連接Sql Server7.0/2000數(shù)據(jù)庫
  testsqlserver.jsp如下:
  <%@ page contentType="text/html;charset=gb2312"%>
  <%@ page import="java.sql.*"%>
  <html>
  <body>
  <%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
  String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs";
  //pubs為你的數(shù)據(jù)庫的
  String user="sa";
  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()) {%>
  您的第一個字段內(nèi)容為:<%=rs.getString(1)%>
  您的第二個字段內(nèi)容為:<%=rs.getString(2)%>
  <%}%>
  <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>
  <%rs.close();
  stmt.close();
  conn.close();
  
  %>
  </body>
  </html>