PresentCompanyHealthCareInfo.jsp~2~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <HTML>
  3. <HEAD><TITLE>Health Plan Information</TITLE></HEAD>
  4. <BODY>
  5. <%@ include file="CompanyBanner.html" %>
  6. <%@ page import="java.sql.*" %>
  7. <%@ page import="humanresource.EmployeeInfoBean" %>
  8. <CENTER>
  9.   <FONT SIZE="5" COLOR="navy">
  10.     Health, Vision, And Dental Plans
  11.   </FONT>
  12. </CENTER>
  13. <TABLE WIDTH="100%" BORDER="1">
  14.   <TH WIDTH="40%">Plan Name</TH>
  15.   <TH WIDTH="20%">Deductible</TH>
  16.   <TH WIDTH="20%">Coverage for Doctors in Plan</TH>
  17.   <TH WIDTH="20%">Coverage for Doctors out of Plan</TH>
  18. <%
  19.   Class.forName("COM.cloudscape.core.JDBCDriver").newInstance();
  20.   Connection conn =
  21.     DriverManager.getConnection("jdbc:cloudscape:c:\HumanResourcesDB");
  22.   Statement statement = conn.createStatement();
  23.   String sql = "SELECT * FROM BENEFITINFO";
  24.   ResultSet rs = statement.executeQuery(sql);
  25.   while (rs.next()) {
  26. %>
  27.   <TR><TD><%= rs.getString("PLANNAME") %></TD>
  28.       <TD ALIGN="center"><%= rs.getString("DEDUCTIBLE") %></TD>
  29.       <TD ALIGN="center"><%= rs.getString("DOCTORSINPLANCOVERAGE") %></TD>
  30.       <TD ALIGN="center"><%= rs.getString("DOCTORSOUTOFPLANCOVERAGE") %></TD>
  31.   </TR>
  32. <% } //end while loop
  33.    if (statement != null)
  34.      statement.close();
  35.    if (conn != null)
  36.      conn.close();
  37. %>
  38. </TABLE>
  39. <BR>
  40. <%@ include file="SiteNavigator.html" %>
  41. </BODY>
  42. </HTML>