⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jdbctable.jsp

📁 java的一系列产品中包括jsme,jmse,j2ee,本文件提供j2ee实现的源代码.
💻 JSP
字号:
<!-- Copyright (c) 1999-2002 by BEA Systems, Inc. All Rights Reserved.-->

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;CHARSET=iso-8859-1">
<meta name="description" content="BEA WebLogic Server">

<meta name="keywords" content="BEA WebLogic Server">

<title>JDBC Table Servlet</title>

<LINK REL="stylesheet" 
TYPE="text/css" 
HREF="wls_examples.css" 
TITLE="BEA WebLogic Server">


</head>

<body bgcolor="#ffffff" link="#3366cc" vlink="#9999cc" alink="#0000cc">

<!-- top intro paragraph tables -->
<!-- RED LINE -->
<table cellspacing="0" cellpadding="0"  border="0" width="100%">
    <tr>
     <td  width="100%" bgcolor="#ff0000" height="1">
     <p class="small">&nbsp;</p>
     </td>
     </tr>
</table>

<table border=0 cellspacing="18" cellpadding="0">
<tr>
<td valign="top">
<a HREF="http://www.bea.com"><IMG SRC="images/logo_tm_onwt.jpg" alt="BEA Logo" border="0"></a>

 <h3>Using JSP to retrieve database data with JDBC</h3>
 
 </td>
 </tr>
</table>
<!-- RED LINE -->
<table cellspacing="0" cellpadding="0"  border="0" width="100%">
    <tr>
     <td  width="100%" bgcolor="#ff0000" height="1">
     <p class="small">&nbsp;</p>
     </td>
     </tr>
</table>

<table border=0 cellspacing="18" cellpadding="0">
<tr>
<td valign="top">

<h4>Make a selection</h4>

<p>

Choose a JDBC driver and a database name from the drop down
lists below.

Note that to use the 'demoPool' connection pool option, deploy the
'demoPool' connection pool using the WebLogic Server Administration
Console.

<p>Entering a username and password are optional, unless you configure
the 'demoPool' to require them.

<p>
<form method="post" name="JdbcTable" action="JdbcTable.jsp">

<table border=0 cellspacing=2 cellpadding=2 width=80%>
<tr>
<td width=30%><font face="Helvetica"><b>JDBC driver :</b></td>
<td><font face="Helvetica"><select name="jdbcDriver">
  <option value="com.pointbase.jdbc.jdbcUniversalDriver">com.pointbase.jdbc.jdbcUniversalDriver</option>
  <option value="weblogic.jdbc.pool.Driver">weblogic.jdbc.pool.Driver</option>
</select></td>
</tr>

<tr>
<td width=30%><font face="Helvetica"><b>Database URL / Connection Pool :</b></td>
<td><font face="Helvetica"><select name="dbURL">
  <option value="jdbc:pointbase:server://localhost/demo">jdbc:pointbase:server://localhost/demo</option>
  <option value="jdbc:weblogic:pool:demoPool">jdbc:weblogic:pool:demoPool</option>
</select></font></td>
</tr>

<tr>
<td width=30%><font face="Helvetica"><b>Username :</b></td>
<td><font face="Helvetica"><input type="text" name="username" size=30></font></td>
</tr>

<tr>
<td width=30%><font face="Helvetica"><b>Password :</b></td>
<td><font face="Helvetica"><input type="password" name="passwd" size=30></font></td>
</tr>

<tr>
<td width=30%><font face="Helvetica"><b>SQL Query :</b></td>
<td><font face="Helvetica"><input type="text" name="sqlQuery" size=50 value="Select * from emp"></td>
</tr>

<tr>
<td><font face="Helvetica"><input type="Submit" value="Submit Query" name="Submit"></td>
</tr>
</table>

</form>

<hr width=80%>

<%@ page import="
javax.naming.*,
java.util.*,
java.sql.*,
weblogic.common.*
" %>

<%
  if ("POST".equals(request.getMethod())) {

    String jdbcDriver = (String) request.getParameter("jdbcDriver");
    String dbURL = (String) request.getParameter("dbURL");
    String sqlQuery = (String) request.getParameter("sqlQuery");
    String username = (String) request.getParameter("username");
    if (username != null && username.equals(""))
        username=null;
    String passwd = (String) request.getParameter("passwd");
    if (passwd != null && passwd.equals(""))
        passwd = null;
%>

<h2>Results from previous query:</h2>

Here are the results from the previous SQL query using the these parameters:

<ul>
<li> JDBC Driver: <%= jdbcDriver==null?"No driver specified.":jdbcDriver %>
<li> Database URL: <%= dbURL==null?"No URL specified":dbURL %>
<li> SQL query: <%= sqlQuery==null?"No SQL query":sqlQuery %>
<li> Username: <%= username==null?"<i>No username supplied</i>":username %>
<li> Password: <%= passwd==null?"<i>No password supplied</i>":passwd %>
</ul>
<p>
<%

    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;

    try {
      Driver myDriver = (Driver) Class.forName(jdbcDriver).newInstance();
      if ((username != null) && (passwd != null)) {
	      Properties props = new Properties();
	      props.put("user",     username);
	      props.put("password", passwd);
			  conn = myDriver.connect(dbURL, props);
			}
      else {
			  conn = myDriver.connect(dbURL, null);
			}
      stmt = conn.createStatement();
      rs = stmt.executeQuery(sqlQuery);

      ResultSetMetaData rsmd = rs.getMetaData();
      int numCols = rsmd.getColumnCount();
%>

<p>
<center>
<table border=1 cellspacing=2 cellpadding=0 width=400>
<tr>

<%
    for (int i = 1; i <= numCols; i++) {
%>

<td><font face="Helvetica"><b><%= rsmd.getColumnLabel(i) %></b></td>

<%
    }
%>

</tr>

<%
    while (rs.next()) {
%>

<tr>

<%
      for (int i = 1; i <= numCols; i++) {
%>

<td><font face="Helvetica"><%= rs.getString(i) %></td>

<%
      }
%>

</tr>

<%
    }
  }
  catch (Exception e) {
%>

<p><b>There was an error executing or processing the query:</b>
<br>
Exception: <%= e %>
<pre><%= getStackTraceAsString(e) %></pre>

<%
  }

  finally {
    try {
      rs.close();
      stmt.close();
      conn.close();
    }
    catch (Exception e) {
      out.print("<b>There was an error closing the database connection</b>");
      out.print("<br>Exception: " +e);
      out.print("<br><pre>"+getStackTraceAsString(e)+"</pre>");
    }
  }
}
%>

</table>
</center>
 </td>
 </tr>
</table>
<br>
<!-- RED LINE -->
<table cellspacing="0" cellpadding="0"  border="0" width="100%">
    <tr>
     <td  width="100%" bgcolor="#ff0000" height="1">
     <p class="small">&nbsp;</p>
     </td>
     </tr>
</table>

<!-- FOOTER -->
<table cellspacing="0" cellpadding="0" border="0" width="100%">
  <tr>
    <td align="left">
      <p class="copyright">Last updated: March 2002</p>
    </td>
  </tr>
</table>

<table cellspacing="0" cellpadding="0" border="0" width="100%"><!-- RED LINE -->
   <tr> 
    <td  width="100%" bgcolor="#ff0000" height="1">
    <p class="small">&nbsp;</p>
    </td>
    </tr>
</table> 


 <p class="copyright"><a href="http://www.bea.com">Home</a> | 
        <a href="http://www.bea.com/about/index.html" target="_top">Corporate Info</a> | 
        <a href="http://www.bea.com/press/index.html" target="_top">News</a> | 
        <a href="http://www.bea.com/solutions/index.html" target="_top">Solutions</a> | 
        <a href="http://www.bea.com/products/index.html" target="_top">Products</a> | 
        <a href="http://www.bea.com/partners/index.html" target="_top">Partners</a> | 
        <a href="http://www.bea.com/services.html" target="_top">Services</a> | 
        <a href="http://www.bea.com/events/index.html" target="_top">Events</a> | 
        <a href="http://www.bea.com/download.html" target="_top">Download</a> | 
        <a href="http://www.bea.com/purchase.html" target="_top">How to Buy</a>
        <br>Copyright 2002, BEA Systems, Inc. All rights reserved. 
        <br>Required browser: Netscape 4.0 or higher, or Microsoft Internet Explorer 4.0 or higher.
        <br> <a href="http://www.bea.com/contact/index.html" target="_top">Contact BEA</a> 
      </p>

</body>
</html>

<%!

  String getStackTraceAsString(Exception e)
  {
    // Dump the stack trace to a buffered stream, then return it's contents
    // as a String. This is useful for printing the stack to 'out'.
    ByteArrayOutputStream ostr = new ByteArrayOutputStream();
    e.printStackTrace(new PrintStream(ostr));
    return(ostr.toString());
  }

%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -