jsp连接MySQL数据库代码

jsp连接MySQL数据库代码:

[javascript]  view plain  copy
 print ?
  1. <%@ page contentType="text/html; charset=GBK" language="java"  
  2.     errorPage=""%>  
  3. <%@ page import="java.sql.*"%>  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    
  5.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  6. <html xmlns="http://www.w3.org/1999/xhtml">  
  7. <head>  
  8. <title>小脚本测试</title>  
  9. <meta name="website" content="http://www.crazyit.org" />  
  10. </head>  
  11. <body bgcolor="lightpink">  
  12.     <%  
  13.         Class.forName("com.mysql.jdbc.Driver");  
  14.         //填的是数据库名  
  15.         Connection conn = DriverManager.getConnection(  
  16.                 "jdbc:mysql://localhost:3306/user""root""root");  
  17.         Statement stmt = conn.createStatement();  
  18.         //填的是表名  
  19.         ResultSet rs = stmt.executeQuery("select * from employee");  
  20.     %>  
  21.     <table bgcolor="lightgreen" border="1" width="300">  
  22.         <%  
  23.             while (rs.next()) {  
  24.         %>  
  25.         <tr>  
  26.             <td><%=rs.getString(1)%></td>  
  27.             <td><%=rs.getString(2)%></td>  
  28.         </tr>  
  29.         <%  
  30.             }  
  31.         %>  
  32.     <table>  
  33. </body>  
  34. </html>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值