20170405JDBC数据查询

Posted 苏水恒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20170405JDBC数据查询相关的知识,希望对你有一定的参考价值。

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="java.sql.*" %>
<%@ page import="com.mysql.jdbc.*" %>

<jsp:useBean id="myjdbc01" scope="page"  class="com.zss.www.DBConn"/>
<%

request.setCharacterEncoding("utf-8");
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>    

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
 
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

  </head>
 
  <body>
   
    
  <%
   String sql="select * from information";
   ResultSet rs = myjdbc01.doSelect(sql);
     out.println("<table width=\'200\' border=\'1\'>");
      out.println("<tr>");
      out.println("<th scope=\'col\'>班级</th>");
      out.println("<th scope=\'col\'>姓名</th>");
      out.println("<th scope=\'col\'>学号</th>");
    while (rs.next()) {
      out.println("<tr>");
      out.println("<td>");
      out.println(rs.getString(1));
      out.println("</td>");
      out.println("<td>");
      out.println(rs.getString(2));
      out.println("</td>");
      out.println("<td>");        
     out.println(rs.getString(3));
      out.println("</td>");}
      out.println("</table>");
        
        %>
         


  </body>

以上是关于20170405JDBC数据查询的主要内容,如果未能解决你的问题,请参考以下文章

20170405xlVBA快速录入

owlCarousel 用法心得1 -20170405

20170405-STO库存转储单

CSDN日报20170405 ——《未来的世界没有程序员》

9.1(JDBC概述)(JDBC连接数据库),(JDBC查询数据)

JDBC01 利用JDBC连接数据库不使用数据库连接池