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

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

[摘要]六、jsp連接MySQL數(shù)據(jù)庫   testmysql.jsp如下:   <%@ page contentType="text/html;charset=gb2312"%>   <%@ page import="java.sql.*"%&g...
  六、jsp連接MySQL數(shù)據(jù)庫
  testmysql.jsp如下:
  <%@ page contentType="text/html;charset=gb2312"%>
  <%@ page import="java.sql.*"%>
  <html>
  <body>
  <%Class.forName("org.gjt.mm.mysql.Driver").newInstance();
  String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
  //testDB為你的數(shù)據(jù)庫名
  Connection conn= DriverManager.getConnection(url);
  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>